#loading the dataset

yahoo <-read.csv("archive/test.csv", header = FALSE, stringsAsFactors = TRUE, sep = ",", dec = ".", strip.white=TRUE, fileEncoding="latin1")
yahoo

#giving header to the dataset

colnames(yahoo) <- c( "Class Index ", "Question Title", "Question Content", "Best Answer")
yahoo

#checking the structure of the dataset

str(yahoo)
## 'data.frame':    60000 obs. of  4 variables:
##  $ Class Index     : int  9 2 4 4 3 3 5 3 4 8 ...
##  $ Question Title  : Factor w/ 59767 levels "___ do not follow mendel's law of independent assortment???",..: 46841 57211 40233 44653 56797 26457 44139 39463 47241 47947 ...
##  $ Question Content: Factor w/ 32781 levels "","_______________ is a big animal. ____________ people do not like them. You can do many things on a __________ ."| __truncated__,..: 7577 30300 1 1 1 1 1 1 1 1 ...
##  $ Best Answer     : Factor w/ 58458 levels "","- - is double bound\\n- - - is triple bound\\n\\nH-C- - -N- -O\\n\\nN- - -C-O-H",..: 13970 47549 50485 36352 37723 55162 47671 42402 10104 10313 ...
summary(yahoo)
##   Class Index                Question Title        Question Content
##  Min.   : 1.0   what should i do?   :   13                 :27106  
##  1st Qu.: 3.0   why is the sky blue?:    8   ?             :   10  
##  Median : 5.5   what do you think?  :    7   Why?          :    9  
##  Mean   : 5.5   What would you do?  :    7   just wondering:    8  
##  3rd Qu.: 8.0   What do you think?  :    6   thanks        :    6  
##  Max.   :10.0   What does this mean?:    6   ???           :    4  
##                 (Other)             :59953   (Other)       :32857  
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               Best Answer   
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     : 1034  
##  no                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 :   51  
##  yes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                :   47  
##  It appears that the question period has expired.  If you have received an answer that meets your needs, please choose one of those as a 'best answer.'  If you haven't received a good answer for your question, you may want to consider the following,\\n\\n1) Re-post your question.  Newer questions get more activity on Yahoo! Answers than old ones.\\n2) If you do re-post your question, consider why it wasn't answered the first time.  Could it be more specific?  Could it be worded better? Were there grammatical or spelling errors? Was it in the best category?\\n\\nIf it doesn't seem likely that re-posting your question will help you, then here's a listing of my favorite 'answer sites'.  Maybe one of them will help you.\\n\\nAnswers.com http://www.answers.com/\\nBartleby http://www.bartleby.com/\\nYahoo Reference http://education.yahoo.com/reference/\\nHowStuffWorks http://www.howstuffworks.com/\\nWikipedia http://en.wikipedia.org/wiki/Main_Page\\n\\nSince I really haven't answered your question, it is not necessary to give me any points.  Regards.:   32  
##  No.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                :   27  
##  This question is miscategorized.\\n\\nSpecial Education refers to the education and parenting of children with special needs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      :   15  
##  (Other)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            :58794
library(ggplot2)
barplot(table(yahoo$`Class Index `), col = "palegreen4")

x <- subset(yahoo, !complete.cases(yahoo))
x

#combining the attributes “Question Title”, “Question Content”, “Best Answer” into one categorical column

library(tidyr)
yahoo <- unite(yahoo, col="Q&A", c("Question Title", "Question Content", "Best Answer"), sep = '    -----    ')
yahoo

#checking for any missing values in the dataset

sum(is.na(yahoo))
## [1] 0
key.table <- table(yahoo$`Class Index `, yahoo$`Q&A`)
chisq.test(key.table)
## Warning in chisq.test(key.table): Chi-squared approximation may be incorrect
## 
##  Pearson's Chi-squared test
## 
## data:  key.table
## X-squared = 540000, df = 539991, p-value = 0.4963

#as we can see from the above chunk there are no missing values in the dataset

#cleaning the data

library(tm)
## Loading required package: NLP
## 
## Attaching package: 'NLP'
## The following object is masked from 'package:ggplot2':
## 
##     annotate
corpus <- VCorpus(VectorSource(yahoo$`Q&A`))
corpus
## <<VCorpus>>
## Metadata:  corpus specific: 0, document level (indexed): 0
## Content:  documents: 60000

#removing various stopwords, punctuations , whitespaces and so on from the data

library(tm)
library(SnowballC)
corpus_cle <- tm_map(corpus, content_transformer(tolower)) 
corpus_cle <- tm_map(corpus_cle, stemDocument)
corpus_cle <- tm_map(corpus_cle, removeWords, c("the", "and", "a", "or", stopwords("english")))
corpus_cle <- tm_map(corpus_cle, removePunctuation)
corpus_cle <- tm_map(corpus_cle, stripWhitespace)

#forming word cloud of the type from 1 to 10

library(wordcloud)
## Loading required package: RColorBrewer
library(RColorBrewer)
wordcloud(corpus_cle, max.words = 100, type = 1)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 2)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 3)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 4)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 5)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 6)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 7)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 8)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 9)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

wordcloud(corpus_cle, max.words = 100, type = 10)
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete
## Warning in strwidth(words[i], cex = size[i], ...): graphical parameter "type" is
## obsolete
## Warning in strheight(words[i], cex = size[i], ...): graphical parameter "type"
## is obsolete
## Warning in text.default(x1, y1, words[i], cex = size[i], offset = 0, srt =
## rotWord * : graphical parameter "type" is obsolete

yah1_train <- yahoo[1:30000, ]
yah1_validation <- yahoo[30001:40000, ]
yah1_test <- yahoo[40001:60000, ]

yah1_train_label = yah1_train$`Class Index `
yah1_val_label = yah1_validation$`Class Index `
yah1_test_label = yah1_test$`Class Index `
library(keras)
text_vectorizer <- layer_text_vectorization(output_mode="tf_idf", ngrams =2, max_tokens = 5000)
## Loaded Tensorflow version 2.10.0
text_vectorizer%>%adapt(yah1_train$`Q&A`)
yahoo1_train_dtm = text_vectorizer(yah1_train$`Q&A`) 
yahoo1_validation_dtm =text_vectorizer(yah1_validation$`Q&A`) 
yahoo1_test_dtm= text_vectorizer(yah1_test$`Q&A`)
model = keras_model_sequential()
model %>%
  layer_dense(units = 128, activation = 'relu', input_shape = dim(yahoo1_train_dtm)[2]) %>%
  layer_dense(units = 10, activation = 'softmax')
  
model %>% compile(
optimizer = 'adam', 
loss = 'sparse_categorical_crossentropy',
metrics = c('accuracy'))

set.seed(111)

history <- model %>% fit(yahoo1_train_dtm, yah1_train_label, epochs = 30, batch_size=100, validation_data=list(yahoo1_validation_dtm, yah1_val_label))
plot(history)

model %>% evaluate(yahoo1_test_dtm, yah1_test_label)
##     loss accuracy 
## 32.99747  0.50770
predicted_labels = as.numeric(model %>% predict(yahoo1_test_dtm) %>%k_argmax())
predicted_labels
##     [1] 2 9 8 1 7 1 7 1 1 5 9 1 9 9 6 3 2 1 9 1 2 3 8 5 1 5 1 3 3 3 2 9 6 1 9 9
##    [37] 9 7 9 3 9 5 9 8 2 9 1 3 8 9 3 9 7 8 1 1 9 9 2 3 7 2 1 7 1 7 8 3 1 3 9 1
##    [73] 8 8 3 7 1 2 2 5 2 3 6 3 1 9 1 2 1 8 2 2 1 6 5 3 9 9 1 3 4 8 3 3 8 9 8 7
##   [109] 8 8 6 8 9 2 3 8 3 8 1 1 2 1 5 1 1 3 1 6 5 3 8 2 1 9 9 1 1 5 1 7 2 6 9 1
##   [145] 1 2 9 3 1 8 7 8 1 1 1 9 8 6 8 8 8 8 1 6 1 2 3 7 8 1 1 5 1 1 1 3 5 1 3 1
##   [181] 1 1 9 9 8 6 3 7 9 1 3 2 8 1 3 3 9 1 2 1 2 7 1 7 8 3 1 9 4 1 1 9 2 1 7 5
##   [217] 3 9 8 4 1 8 8 5 3 1 7 3 1 9 9 1 1 3 3 2 5 8 3 7 8 1 3 7 2 6 3 8 3 1 9 3
##   [253] 3 1 7 1 3 3 3 6 3 9 2 3 5 3 1 1 2 8 5 1 1 8 5 7 2 5 1 6 3 1 3 6 8 8 9 5
##   [289] 5 8 1 9 9 5 7 5 1 6 1 1 3 1 3 1 1 2 1 8 3 8 1 2 2 3 9 5 3 1 3 1 1 1 2 2
##   [325] 1 3 5 1 2 3 6 1 5 9 3 5 8 3 7 1 8 2 3 5 9 1 9 8 2 1 6 2 9 3 7 3 1 5 1 7
##   [361] 1 1 1 7 3 2 8 3 5 5 3 1 6 8 1 9 5 2 3 9 3 3 1 3 9 3 6 5 8 3 7 3 1 5 7 1
##   [397] 6 3 6 1 6 8 9 3 1 1 2 1 8 5 3 9 8 3 9 3 3 9 3 9 1 3 2 9 5 3 9 1 8 6 3 2
##   [433] 3 7 9 7 8 9 8 1 8 1 2 3 8 1 3 5 8 1 9 5 8 3 1 9 1 2 3 6 7 3 6 8 3 1 9 8
##   [469] 1 6 9 3 9 5 8 5 2 1 9 8 1 9 9 2 1 6 2 9 5 9 3 9 9 9 3 1 3 1 1 8 6 7 8 6
##   [505] 2 3 3 1 2 7 3 6 8 9 7 1 1 5 3 8 3 1 9 7 8 1 3 1 3 7 1 9 1 3 5 1 3 9 7 8
##   [541] 3 1 9 9 7 7 6 7 2 3 1 1 7 1 1 3 1 3 8 3 3 7 3 7 9 1 3 3 7 1 3 1 6 9 3 1
##   [577] 9 1 8 1 9 6 7 5 2 7 7 3 8 5 2 8 1 5 1 4 1 6 9 1 8 8 1 6 1 2 8 3 1 4 8 9
##   [613] 8 2 1 8 1 2 2 8 1 5 9 1 8 3 9 7 1 5 7 3 9 7 1 9 1 1 9 3 9 6 1 1 1 8 7 2
##   [649] 9 2 1 3 7 5 3 2 9 9 3 5 2 5 9 9 1 3 9 1 3 6 9 1 7 8 1 8 8 9 1 5 8 9 8 8
##   [685] 1 1 6 1 1 7 1 9 8 8 3 3 1 6 9 1 7 3 8 2 8 8 1 9 1 1 6 8 1 2 9 1 9 8 3 1
##   [721] 1 3 5 3 1 1 3 7 1 5 1 3 9 8 9 1 1 3 1 2 3 3 3 5 1 1 8 2 1 2 5 4 2 1 1 2
##   [757] 1 2 1 2 2 7 3 8 3 9 7 8 1 1 3 3 3 1 1 6 8 6 1 1 1 3 2 8 8 1 2 8 3 1 1 1
##   [793] 7 9 5 9 1 1 2 2 9 1 8 9 1 6 7 1 4 3 8 1 9 4 7 5 1 6 9 3 1 1 9 1 5 3 4 6
##   [829] 3 9 7 2 9 7 9 8 8 1 2 6 6 1 1 6 3 3 1 9 1 1 9 1 6 1 3 5 6 8 2 5 8 1 8 5
##   [865] 7 3 1 8 1 5 5 4 6 1 8 5 7 9 1 2 8 3 2 3 5 5 7 3 7 9 8 3 1 1 1 5 1 1 1 7
##   [901] 9 9 7 1 7 1 3 5 1 3 1 8 2 7 3 3 1 1 5 9 3 9 5 6 9 2 1 7 1 7 9 1 1 4 3 5
##   [937] 1 5 6 2 2 9 9 1 1 3 1 3 1 2 1 7 5 2 8 8 6 9 5 3 1 3 1 6 6 5 9 4 3 9 1 8
##   [973] 4 3 1 9 4 3 1 1 2 3 2 7 1 1 5 8 3 1 1 2 1 2 1 1 1 7 3 3 7 8 2 2 1 1 5 8
##  [1009] 1 6 8 3 7 1 1 1 9 1 8 5 3 9 1 1 8 1 8 1 9 1 9 3 5 1 3 7 9 8 7 1 1 9 3 3
##  [1045] 3 5 1 2 1 2 2 7 1 5 3 2 1 2 3 1 1 8 3 3 5 2 8 3 3 1 8 3 5 6 3 3 7 8 9 5
##  [1081] 1 8 9 8 2 3 1 3 1 2 1 3 6 5 1 1 8 2 1 8 1 9 8 8 5 8 8 1 2 5 9 1 2 3 3 1
##  [1117] 8 8 6 8 3 4 7 8 1 1 2 1 1 8 1 2 3 3 1 1 7 8 3 6 3 3 3 9 1 2 8 5 2 8 3 5
##  [1153] 2 3 2 5 3 7 3 2 2 7 9 3 1 1 2 4 3 9 2 7 1 3 9 5 7 3 3 9 2 7 7 1 9 3 3 9
##  [1189] 1 6 8 1 3 1 9 1 8 1 4 7 4 3 1 9 3 9 3 9 1 1 9 1 1 3 1 3 8 1 5 8 1 1 2 6
##  [1225] 1 8 3 7 1 1 1 3 1 3 5 2 9 9 5 1 9 3 5 3 8 2 1 3 9 3 3 1 9 1 7 1 8 8 1 2
##  [1261] 6 1 8 9 1 7 5 1 9 1 7 2 3 1 2 9 2 3 9 1 8 1 6 1 4 2 9 6 1 8 8 9 9 3 9 1
##  [1297] 2 3 5 5 8 3 8 6 1 7 7 8 3 2 9 8 2 1 3 1 3 3 3 9 5 6 9 1 5 7 1 2 3 5 8 1
##  [1333] 1 1 2 6 7 1 3 3 5 3 7 5 9 1 3 2 5 7 3 8 2 1 1 1 3 3 2 3 8 1 1 3 8 2 1 1
##  [1369] 6 7 5 2 3 3 9 7 3 1 1 8 9 2 1 8 3 1 1 3 5 5 7 1 7 9 5 3 8 1 1 3 9 3 9 3
##  [1405] 1 3 2 6 3 9 1 9 9 9 1 1 5 3 2 3 6 8 3 6 6 3 1 1 7 8 3 4 1 1 9 9 7 1 2 1
##  [1441] 7 1 1 1 3 3 7 1 1 8 5 9 2 5 1 1 1 3 8 6 8 3 8 1 5 8 6 5 5 1 8 1 1 5 3 2
##  [1477] 8 2 1 1 2 7 7 8 1 2 2 9 2 5 8 6 3 9 1 2 2 3 3 1 3 5 3 3 2 1 2 4 1 1 1 3
##  [1513] 9 9 3 1 5 9 3 8 3 9 6 9 7 1 7 7 6 1 2 1 5 2 8 5 9 8 3 1 5 2 1 9 8 8 1 3
##  [1549] 1 3 1 2 9 3 3 7 1 7 1 8 3 8 5 3 3 3 1 9 1 3 8 3 6 1 5 5 3 8 7 3 7 3 8 2
##  [1585] 5 8 2 7 6 8 5 1 3 1 1 1 3 9 2 7 2 9 7 3 8 3 9 9 1 1 9 9 8 3 5 2 6 8 6 4
##  [1621] 5 8 6 3 4 1 5 2 1 2 8 1 9 1 7 1 2 2 3 8 9 3 9 1 6 9 5 3 3 3 3 2 5 7 1 5
##  [1657] 5 5 7 2 2 3 1 6 9 1 3 1 5 9 1 1 1 8 7 3 3 2 1 3 9 7 9 8 9 1 6 8 3 3 6 1
##  [1693] 2 9 3 3 3 6 2 5 7 3 3 3 3 3 1 1 7 2 1 1 2 8 3 1 7 5 7 1 7 9 3 3 3 5 9 9
##  [1729] 3 8 1 3 7 7 1 7 7 3 1 1 1 3 8 3 7 7 9 8 3 3 3 6 7 1 2 9 7 1 1 2 3 8 3 3
##  [1765] 5 3 8 3 3 3 1 6 8 2 8 9 1 1 6 3 1 8 1 1 8 8 1 1 9 7 8 5 9 1 2 1 9 7 2 1
##  [1801] 3 1 1 1 9 9 1 1 1 5 1 1 8 1 8 3 3 5 3 8 8 3 8 4 1 1 2 2 3 7 1 7 3 3 5 1
##  [1837] 2 1 9 8 1 9 4 3 9 8 5 4 5 1 9 1 1 3 8 9 9 1 1 9 2 1 9 2 9 3 1 9 3 2 1 5
##  [1873] 1 7 3 8 1 3 9 4 3 3 3 7 3 1 5 9 5 1 1 1 8 1 8 1 3 7 1 1 1 9 7 1 8 3 6 1
##  [1909] 7 3 8 1 6 5 5 1 1 1 1 9 9 1 2 8 1 1 5 1 3 9 3 1 8 5 5 2 3 1 3 9 8 1 1 9
##  [1945] 9 8 8 1 3 1 5 1 5 6 5 1 8 1 2 1 1 1 9 1 3 1 5 9 1 1 1 3 7 3 1 9 9 3 1 9
##  [1981] 1 8 8 1 1 3 3 2 9 6 7 9 9 7 9 3 8 6 7 1 1 7 5 7 2 7 8 3 6 3 1 8 3 3 1 1
##  [2017] 1 3 7 3 3 1 3 2 2 2 9 2 9 1 7 1 9 1 7 1 1 1 7 3 3 1 3 7 3 8 1 1 9 1 2 3
##  [2053] 9 7 8 5 1 3 4 5 3 8 1 7 5 2 1 8 5 9 2 8 8 8 3 3 3 9 1 1 3 8 1 9 3 3 8 9
##  [2089] 9 1 2 1 3 1 6 9 6 7 3 7 5 2 8 2 6 7 6 8 8 3 9 3 8 1 3 7 7 9 1 3 5 8 1 8
##  [2125] 6 5 1 9 3 2 5 2 6 1 1 8 1 9 7 8 8 2 1 3 5 3 1 2 3 7 6 9 1 1 7 8 1 2 1 3
##  [2161] 2 5 9 3 3 3 7 5 6 3 8 8 5 3 3 1 3 2 1 7 9 3 9 2 1 9 9 3 3 7 7 2 2 9 1 1
##  [2197] 4 9 1 7 2 1 1 7 6 2 3 6 8 1 9 1 3 8 1 5 9 1 1 3 7 4 3 1 1 8 2 3 8 2 6 2
##  [2233] 3 1 6 8 8 3 7 1 1 2 5 1 6 6 8 1 3 5 9 8 9 9 9 3 5 3 3 3 1 3 6 8 3 9 6 1
##  [2269] 1 7 1 5 3 1 1 8 7 3 9 8 8 2 7 1 1 1 1 3 1 5 6 1 1 7 3 9 1 1 1 6 3 6 2 1
##  [2305] 1 4 2 6 8 5 1 1 1 3 7 3 9 9 7 1 1 1 7 2 1 8 9 3 8 3 2 4 7 9 3 8 2 1 2 1
##  [2341] 9 8 1 4 9 3 9 3 9 1 4 2 8 1 2 1 3 6 3 5 2 1 3 3 3 1 3 3 7 8 2 7 7 3 9 1
##  [2377] 2 9 7 7 6 7 2 1 5 1 6 9 6 1 1 3 2 5 9 1 9 1 6 2 1 4 9 1 1 2 1 1 9 3 1 9
##  [2413] 8 1 3 3 1 2 9 1 8 9 3 3 1 1 1 9 8 3 8 1 6 2 1 3 7 2 1 7 8 8 1 6 5 1 5 3
##  [2449] 9 3 1 3 5 1 2 9 7 3 1 7 7 5 3 3 1 7 6 7 1 8 2 5 7 5 2 9 7 3 9 9 2 6 1 1
##  [2485] 3 8 1 1 1 1 3 7 3 7 8 9 1 6 5 2 2 1 2 3 8 3 1 5 1 8 3 3 7 1 1 1 2 5 1 9
##  [2521] 2 5 8 1 1 1 7 3 1 2 5 1 9 1 1 1 3 6 1 1 1 1 7 8 3 1 1 3 3 7 7 3 1 8 8 9
##  [2557] 3 2 3 7 1 7 1 1 5 2 5 9 1 8 1 1 8 9 2 1 1 3 1 1 5 1 1 3 1 7 9 9 8 8 1 8
##  [2593] 3 8 1 1 8 7 3 3 5 1 8 8 1 3 1 1 7 5 1 8 1 3 3 1 2 1 2 3 7 8 8 1 3 2 8 1
##  [2629] 5 7 1 7 1 9 7 3 3 1 8 1 4 3 1 2 1 1 7 3 8 1 1 1 1 9 5 1 1 9 1 3 5 9 7 6
##  [2665] 9 3 9 3 2 7 1 9 9 1 1 1 3 1 1 3 1 3 1 2 9 9 1 1 1 6 9 3 8 1 9 1 3 8 3 3
##  [2701] 5 7 9 2 2 4 9 3 9 2 3 9 5 9 5 9 9 5 2 3 5 2 2 3 8 9 8 8 7 1 9 3 3 1 1 1
##  [2737] 9 7 7 8 6 8 2 7 1 8 8 3 1 3 8 6 3 8 3 6 3 5 2 5 1 1 9 1 9 5 2 2 8 9 5 7
##  [2773] 6 6 1 5 8 3 3 3 5 7 3 3 6 1 9 3 6 9 2 6 8 8 1 9 8 2 7 9 2 2 2 9 9 8 6 8
##  [2809] 3 6 9 3 3 3 7 1 3 6 2 2 3 7 7 2 9 5 3 9 9 3 8 3 1 2 1 2 1 6 3 1 1 9 1 6
##  [2845] 3 8 2 6 1 1 1 3 2 9 6 8 1 2 3 1 8 9 3 3 1 1 4 1 9 7 1 5 7 7 1 6 8 1 9 8
##  [2881] 3 9 1 1 5 1 3 7 3 9 1 5 6 6 8 2 8 2 1 7 8 3 1 7 1 9 9 9 3 1 1 1 1 2 1 9
##  [2917] 7 7 3 7 3 3 3 5 8 7 6 3 1 1 1 3 5 3 1 2 3 1 7 9 3 2 3 2 9 3 8 1 9 1 3 5
##  [2953] 6 9 6 1 2 8 8 2 8 6 5 9 8 2 6 2 8 9 1 2 6 1 9 2 6 2 2 3 3 9 1 3 9 5 8 9
##  [2989] 3 1 2 7 8 6 1 9 5 9 1 4 3 2 1 1 2 5 8 3 2 9 2 5 8 5 1 9 9 8 1 3 1 1 9 3
##  [3025] 9 1 3 1 7 7 3 3 3 2 7 1 2 3 8 8 1 9 3 6 9 1 3 2 5 3 3 3 3 3 2 1 1 5 3 1
##  [3061] 5 1 1 3 3 8 1 8 3 1 1 2 5 1 1 2 1 5 9 5 9 1 9 3 9 5 1 3 3 7 3 8 4 9 9 9
##  [3097] 8 9 1 1 5 8 1 1 1 1 1 3 1 9 8 4 6 9 3 1 9 1 2 1 9 2 1 7 3 8 9 9 3 8 3 1
##  [3133] 1 1 8 8 7 9 7 1 3 1 1 9 7 1 1 9 5 1 7 9 9 1 1 2 2 3 3 3 1 8 6 8 5 8 2 9
##  [3169] 3 8 3 3 9 9 2 7 1 9 1 9 7 1 9 3 1 2 6 1 3 9 3 1 8 8 1 1 3 3 2 1 3 9 1 3
##  [3205] 1 9 7 3 1 8 2 2 3 1 3 3 1 1 9 3 3 1 3 7 1 2 3 1 7 7 9 7 4 3 3 1 9 8 7 8
##  [3241] 3 8 3 1 5 1 3 9 3 2 6 2 6 1 1 7 1 1 7 9 1 2 9 3 9 1 1 3 9 7 3 3 2 9 1 3
##  [3277] 3 1 9 3 8 1 1 5 1 3 7 2 3 1 7 6 7 3 9 6 8 3 1 2 9 8 3 6 8 1 3 2 4 4 3 3
##  [3313] 1 1 5 8 7 1 6 5 7 9 9 2 3 8 1 1 1 1 6 8 3 1 1 1 1 8 1 1 3 3 3 2 3 8 1 1
##  [3349] 1 3 1 1 3 2 9 1 1 1 9 6 5 9 3 3 3 7 3 3 7 8 5 3 2 9 3 1 3 7 2 8 3 3 2 8
##  [3385] 8 9 3 2 5 3 4 6 1 5 9 8 2 7 1 3 8 7 2 6 6 9 8 1 9 3 3 9 5 2 2 3 8 2 7 1
##  [3421] 3 5 8 3 1 6 3 7 7 8 3 1 9 2 1 1 9 9 1 1 2 8 9 7 7 1 3 2 2 8 8 9 1 2 8 2
##  [3457] 1 1 8 9 5 1 5 2 9 1 2 9 2 4 1 1 3 9 1 9 1 9 1 1 9 1 3 3 9 1 7 1 3 3 3 8
##  [3493] 1 8 1 1 2 9 3 3 1 1 3 1 1 6 1 1 3 7 3 3 1 9 1 1 2 1 1 8 2 9 7 3 1 1 7 3
##  [3529] 2 1 8 2 8 9 7 3 3 8 3 1 3 3 3 8 6 9 3 1 1 9 5 3 1 6 3 2 1 2 3 3 1 3 1 3
##  [3565] 1 2 8 1 5 4 8 9 3 9 9 3 1 8 9 6 5 7 8 3 3 3 8 7 3 9 1 8 3 7 3 6 3 1 3 4
##  [3601] 5 1 3 8 5 3 9 3 9 3 7 8 2 3 9 3 1 7 5 1 6 8 8 1 6 7 1 5 6 5 5 9 2 7 3 1
##  [3637] 1 6 1 9 1 8 9 8 5 1 1 1 1 6 1 1 1 3 8 3 5 8 5 2 3 8 2 2 9 1 1 1 8 1 8 2
##  [3673] 7 9 6 7 3 8 8 7 8 1 3 9 2 5 3 3 3 2 1 7 3 7 3 9 3 5 2 9 1 3 5 2 5 3 2 6
##  [3709] 8 5 1 1 5 9 3 9 8 7 2 7 7 3 3 8 9 6 1 5 8 3 8 1 3 8 9 3 1 3 6 1 1 3 1 1
##  [3745] 3 5 1 3 9 3 1 1 5 2 5 5 3 2 1 7 1 7 1 7 3 3 1 6 1 1 3 3 7 5 3 9 7 3 5 1
##  [3781] 3 2 8 9 1 2 9 6 7 3 9 1 9 1 8 8 1 3 4 9 8 3 3 3 7 2 3 1 8 7 1 1 1 9 8 8
##  [3817] 9 3 5 1 1 5 3 9 9 5 6 3 3 7 6 2 5 1 1 1 5 8 3 3 2 2 3 6 3 3 1 8 7 1 9 2
##  [3853] 5 2 1 3 1 9 3 9 1 3 7 8 7 1 3 6 7 1 9 3 5 1 5 8 9 8 8 3 1 3 1 5 1 8 3 6
##  [3889] 2 8 7 2 8 5 8 9 9 8 7 9 2 3 7 7 1 2 8 1 2 3 9 1 5 9 8 9 8 1 2 3 8 2 9 1
##  [3925] 1 8 1 3 3 1 1 3 1 7 2 1 8 1 3 3 7 7 5 1 1 1 3 7 9 1 2 1 2 3 9 1 3 3 3 5
##  [3961] 6 3 1 2 7 1 8 1 8 2 1 5 3 2 8 7 2 2 1 3 9 8 6 1 9 8 1 1 8 9 2 3 7 7 1 1
##  [3997] 1 2 8 1 8 9 3 2 3 1 2 1 1 1 9 7 3 3 1 9 1 2 3 8 1 5 5 2 9 2 1 2 9 1 1 8
##  [4033] 3 1 8 8 7 1 9 1 3 1 8 9 1 2 5 3 3 3 1 8 1 9 1 3 3 6 6 8 9 5 1 2 3 1 9 2
##  [4069] 3 1 8 7 1 9 1 1 1 3 8 5 9 9 3 7 1 1 3 5 2 2 3 7 9 1 8 3 1 8 9 9 1 9 1 2
##  [4105] 3 3 7 1 3 1 2 8 2 2 3 3 2 9 5 2 9 8 9 1 3 3 5 8 9 2 2 1 3 5 1 1 9 1 2 2
##  [4141] 9 2 1 8 2 1 1 7 8 1 1 3 3 3 1 1 1 3 9 3 1 5 3 8 3 1 6 7 7 3 9 6 5 1 1 1
##  [4177] 7 9 1 1 3 8 8 9 3 2 1 6 1 1 3 5 3 7 5 7 3 8 2 2 6 7 1 1 1 2 3 1 1 9 1 2
##  [4213] 3 1 5 3 5 1 2 1 7 3 3 1 1 1 3 3 1 1 6 2 3 1 1 6 9 5 8 8 7 9 3 2 8 1 7 9
##  [4249] 8 3 1 1 1 1 7 5 1 1 9 2 6 1 3 1 9 3 2 2 6 5 8 8 7 1 3 5 3 1 9 7 6 8 1 3
##  [4285] 3 7 1 1 1 2 8 2 8 9 5 9 3 2 1 1 3 6 8 3 6 6 1 7 1 3 1 1 1 5 1 1 1 9 2 2
##  [4321] 1 2 1 5 1 5 9 3 3 3 3 2 5 3 3 8 3 1 1 2 8 9 3 3 2 6 1 4 9 7 9 2 3 4 1 3
##  [4357] 8 3 1 1 7 1 4 8 3 6 1 5 6 9 8 3 5 3 3 3 1 1 1 3 6 7 1 6 8 3 1 8 3 5 8 1
##  [4393] 3 3 3 3 1 3 9 9 3 7 2 7 1 7 6 3 3 7 8 1 3 6 2 7 9 1 3 3 1 5 3 7 8 1 1 1
##  [4429] 7 1 1 5 3 4 1 1 9 8 8 1 7 3 3 1 3 3 7 7 1 6 8 4 7 3 8 8 1 3 2 1 6 9 8 8
##  [4465] 8 8 9 8 9 8 9 9 3 2 1 1 7 3 2 3 3 3 2 5 1 3 9 3 9 1 9 3 9 2 1 9 3 1 3 1
##  [4501] 5 7 1 8 8 9 3 1 3 9 9 9 6 6 8 8 8 8 3 9 3 3 3 1 1 9 3 3 1 2 8 3 1 2 7 3
##  [4537] 9 9 6 3 6 8 3 9 9 5 5 1 8 8 1 5 3 7 3 3 6 3 9 1 8 2 7 9 3 1 1 9 2 9 4 2
##  [4573] 9 8 7 9 5 8 1 1 4 5 1 5 9 2 6 7 1 8 1 2 6 7 3 1 1 2 1 1 1 9 2 2 1 9 1 3
##  [4609] 9 5 5 1 1 6 8 1 9 2 1 1 9 7 1 1 1 1 3 3 3 7 7 6 5 5 3 8 1 2 8 3 1 1 3 1
##  [4645] 2 1 9 3 8 3 3 3 3 1 1 9 1 9 9 1 1 1 7 9 6 9 7 1 1 3 3 9 1 1 1 1 8 1 9 1
##  [4681] 5 9 7 9 9 9 3 1 1 9 1 3 3 6 3 9 1 3 1 4 1 5 9 6 8 9 8 9 1 7 2 9 6 5 8 8
##  [4717] 9 9 3 8 1 1 3 3 1 1 1 8 7 1 8 3 2 3 8 4 1 1 7 1 6 5 1 8 8 9 8 9 9 1 1 9
##  [4753] 8 2 5 5 7 3 8 1 5 1 2 7 2 8 5 9 8 8 7 7 8 1 1 9 2 3 1 7 1 5 3 3 3 1 2 5
##  [4789] 3 9 8 8 7 5 6 5 1 9 4 1 3 1 6 2 2 2 8 3 6 8 1 3 9 8 1 3 6 9 9 1 3 6 1 2
##  [4825] 8 1 1 2 5 2 9 3 9 6 3 3 2 1 5 9 9 2 7 8 1 9 8 9 9 9 2 7 5 1 1 7 2 7 8 1
##  [4861] 7 1 8 9 1 3 3 1 1 2 2 1 2 1 9 1 1 2 9 4 9 1 6 3 1 8 1 4 9 9 1 1 2 7 2 3
##  [4897] 7 2 1 5 1 8 3 6 8 7 6 5 9 1 3 1 3 9 1 2 3 8 8 6 8 1 3 1 6 1 2 2 1 8 1 2
##  [4933] 7 5 3 7 6 8 6 7 5 1 8 6 2 9 1 8 7 9 8 9 9 1 1 5 1 2 3 1 1 2 9 5 9 2 5 6
##  [4969] 1 7 5 1 9 9 8 3 3 1 8 1 1 9 2 1 7 3 7 7 7 2 9 8 3 9 1 3 1 5 3 7 6 3 8 5
##  [5005] 3 1 1 3 1 8 9 1 1 8 1 1 8 9 8 3 2 3 8 9 9 5 3 9 8 5 3 9 8 8 7 9 3 9 9 8
##  [5041] 3 3 3 1 9 2 8 3 3 3 1 1 3 8 2 1 3 6 2 3 2 3 7 1 3 1 7 3 5 4 1 8 1 9 8 5
##  [5077] 9 2 6 2 3 1 8 9 2 2 3 5 7 1 8 1 8 8 7 3 1 9 9 3 2 7 7 9 5 3 7 7 1 8 2 3
##  [5113] 1 1 6 3 1 1 7 9 9 8 8 8 3 1 2 3 1 1 9 4 1 1 6 8 1 1 8 7 6 3 9 1 1 5 6 8
##  [5149] 8 2 5 8 9 8 1 1 1 7 5 1 7 1 6 8 3 9 3 6 1 1 9 1 9 1 3 5 5 9 5 5 6 1 8 1
##  [5185] 7 5 7 1 2 9 8 5 9 8 6 1 3 6 9 7 1 8 3 3 7 9 2 6 1 3 2 8 6 9 8 9 1 3 1 1
##  [5221] 3 8 9 1 1 1 1 6 1 2 1 5 7 2 1 6 6 2 1 1 5 3 6 8 5 1 1 9 8 1 8 9 6 3 9 7
##  [5257] 3 7 1 1 2 9 6 9 9 1 9 7 5 8 7 3 1 9 1 1 9 8 1 2 6 7 2 4 1 7 8 9 8 3 8 9
##  [5293] 9 9 1 1 1 7 1 5 2 9 1 7 2 2 3 5 1 1 7 9 5 7 9 2 3 3 1 3 6 8 3 3 5 9 1 1
##  [5329] 9 3 1 6 3 5 5 3 7 4 9 6 8 9 1 1 5 8 1 9 3 9 1 8 9 1 7 2 2 8 9 9 7 3 8 3
##  [5365] 5 1 7 5 3 2 1 1 7 3 6 1 8 2 1 8 9 9 1 8 9 3 4 2 2 8 6 1 2 3 2 1 3 1 3 3
##  [5401] 9 1 1 3 8 5 8 1 3 9 1 3 1 2 3 5 1 8 1 3 2 1 9 7 9 2 6 3 3 3 9 5 8 5 9 1
##  [5437] 9 8 1 2 7 5 1 1 1 1 1 9 1 7 3 3 1 1 1 7 2 8 1 3 1 1 1 2 6 6 5 3 1 1 3 4
##  [5473] 1 5 7 8 5 9 5 8 3 9 3 7 9 3 2 1 7 1 3 9 6 1 3 1 2 9 7 8 3 8 7 2 9 3 5 9
##  [5509] 1 2 5 2 3 9 1 2 3 8 9 2 7 9 7 6 1 3 6 5 8 8 9 3 1 5 6 7 5 1 5 1 9 3 8 1
##  [5545] 4 2 9 3 2 1 8 9 7 3 9 1 1 1 3 7 2 9 2 7 8 1 3 9 2 6 9 8 3 8 6 3 3 9 8 9
##  [5581] 9 2 3 1 1 3 8 1 1 9 1 9 1 1 7 2 2 1 3 1 3 3 9 1 9 9 3 6 1 3 8 3 1 3 1 1
##  [5617] 3 3 1 1 1 6 3 3 1 9 3 1 5 6 9 8 3 3 8 9 6 2 6 1 7 9 3 3 2 3 3 1 3 5 8 8
##  [5653] 1 9 5 3 8 6 1 7 7 3 3 2 3 1 8 7 2 7 9 5 3 3 1 2 9 7 9 7 3 1 1 2 3 9 8 4
##  [5689] 3 1 2 1 1 1 1 8 9 9 1 1 1 3 9 8 8 5 8 9 8 1 3 1 1 9 7 5 9 3 8 3 1 3 9 9
##  [5725] 7 3 2 9 7 6 3 9 1 8 9 1 3 1 3 4 5 8 1 9 2 8 1 1 1 5 3 8 1 9 2 3 1 7 1 7
##  [5761] 1 1 1 1 1 5 1 6 8 4 7 3 7 8 9 9 8 5 1 5 3 7 5 1 3 3 9 9 1 1 8 7 6 9 3 8
##  [5797] 1 3 1 8 1 3 1 2 3 8 1 9 9 1 2 9 2 9 2 3 1 3 3 3 2 1 8 8 1 3 8 1 4 6 1 5
##  [5833] 3 7 9 8 8 5 3 8 3 3 8 1 1 1 2 3 1 1 9 8 8 8 1 3 8 1 1 3 9 1 5 7 2 7 8 6
##  [5869] 1 1 2 1 2 1 3 9 3 2 5 9 5 7 8 3 1 6 3 1 9 9 2 2 8 8 1 1 9 8 9 6 9 7 1 2
##  [5905] 1 2 1 8 9 7 5 8 8 5 8 1 3 3 3 1 2 3 1 3 4 1 2 9 3 3 2 8 3 9 3 9 9 2 3 3
##  [5941] 6 1 3 1 3 1 5 7 3 1 2 5 1 1 3 3 6 5 5 9 3 5 1 1 2 2 1 1 5 1 8 1 6 2 6 7
##  [5977] 5 1 8 1 8 2 1 8 5 3 8 2 1 3 3 1 3 1 5 3 8 7 8 6 3 7 1 6 2 8 3 1 6 1 3 9
##  [6013] 7 8 8 5 1 9 6 2 3 8 3 9 1 3 9 1 9 7 2 2 3 8 7 1 6 9 1 3 3 3 3 9 7 1 3 9
##  [6049] 1 3 9 9 3 1 9 3 3 8 5 5 3 8 9 9 3 9 8 7 1 3 3 8 1 1 1 2 1 6 3 6 1 1 8 1
##  [6085] 3 7 2 3 1 7 3 7 4 6 3 1 8 7 5 3 8 1 1 8 9 8 3 9 2 1 2 1 2 3 9 8 7 7 3 8
##  [6121] 1 2 1 9 8 1 5 1 2 1 3 1 5 3 8 1 8 8 5 2 9 7 3 8 1 1 1 3 9 8 1 3 8 3 1 3
##  [6157] 4 6 8 9 1 3 9 1 1 7 7 1 8 9 3 1 1 6 1 1 1 8 5 1 6 1 3 1 5 8 2 2 1 6 1 1
##  [6193] 1 3 5 3 6 3 1 3 7 1 2 1 9 9 7 9 1 3 4 5 8 7 8 2 7 3 9 3 2 1 3 3 6 6 7 1
##  [6229] 1 7 3 9 9 1 1 6 3 6 3 3 8 3 9 1 1 7 2 2 9 8 1 5 7 3 8 5 2 2 1 8 8 3 8 8
##  [6265] 9 3 1 8 2 1 1 3 3 3 7 5 1 1 1 5 2 1 3 5 3 1 2 3 7 3 5 3 3 1 3 3 2 3 9 1
##  [6301] 7 3 1 3 2 1 5 1 1 8 9 9 1 5 1 5 8 7 2 6 8 9 5 9 6 3 3 5 1 1 1 1 3 5 1 8
##  [6337] 9 6 3 1 1 1 5 7 6 1 3 7 1 2 5 7 1 3 9 8 6 3 2 3 9 9 3 3 3 1 5 5 1 6 3 8
##  [6373] 3 1 1 1 9 1 8 5 5 1 2 1 3 1 1 3 8 7 1 8 7 1 3 8 2 8 3 2 2 2 1 2 9 3 2 5
##  [6409] 4 9 1 1 7 3 1 1 3 5 1 3 1 1 3 1 9 9 1 3 3 7 7 3 8 3 8 1 1 5 2 6 2 5 1 8
##  [6445] 8 7 1 3 5 6 9 3 9 6 1 9 8 1 3 1 6 9 7 7 7 2 5 3 1 8 3 3 3 5 1 1 3 1 1 2
##  [6481] 9 3 3 1 8 8 3 9 2 9 1 1 8 1 1 6 1 1 1 7 3 3 6 1 3 7 2 3 2 6 4 5 2 2 6 6
##  [6517] 5 1 7 8 1 2 1 7 6 3 6 9 1 6 5 3 6 6 3 1 2 3 8 9 3 8 3 9 5 1 8 9 1 3 5 3
##  [6553] 1 2 5 2 6 7 8 3 3 8 1 1 1 3 6 1 7 7 1 1 9 8 9 3 1 8 6 8 6 1 3 6 9 2 5 6
##  [6589] 9 1 1 3 8 2 8 1 6 5 9 3 8 1 9 1 1 5 5 3 5 3 5 9 1 5 1 1 1 1 5 1 8 1 1 1
##  [6625] 3 3 1 2 1 3 8 7 3 2 7 2 7 2 1 9 9 7 5 7 5 5 2 2 3 3 3 3 9 1 5 6 6 1 3 1
##  [6661] 5 7 6 8 3 8 1 7 6 9 1 3 9 5 9 9 1 5 2 3 2 7 6 6 5 9 2 9 1 3 1 6 9 8 2 3
##  [6697] 3 9 1 2 7 8 7 1 6 1 8 3 3 1 8 9 2 3 2 3 7 8 3 2 1 7 3 6 3 1 9 8 9 1 6 8
##  [6733] 6 9 9 6 9 5 2 1 6 1 9 1 2 1 8 1 5 5 9 1 1 1 3 8 2 8 8 8 3 1 3 1 6 3 2 1
##  [6769] 3 1 7 1 1 3 5 3 3 1 3 8 2 7 1 9 3 5 2 3 1 7 9 5 8 5 3 3 6 6 1 7 3 3 3 5
##  [6805] 8 6 7 3 8 6 1 8 6 1 2 9 7 9 3 1 1 6 3 1 7 2 1 9 3 1 4 1 1 3 8 5 6 7 1 2
##  [6841] 1 2 6 9 5 2 3 6 6 8 9 1 2 9 5 5 3 2 9 1 7 3 2 1 9 6 3 2 1 6 3 9 1 8 1 7
##  [6877] 8 3 1 1 9 9 7 1 7 8 5 7 2 1 1 1 3 2 4 9 3 8 5 2 9 3 3 1 1 3 1 1 1 1 1 5
##  [6913] 1 1 8 8 8 2 8 8 3 8 9 3 1 6 1 3 3 3 1 5 1 1 1 9 5 3 6 9 1 2 1 3 1 5 6 8
##  [6949] 1 1 1 4 8 2 8 7 7 6 7 8 1 3 7 5 7 6 1 8 1 1 9 4 9 2 5 3 2 3 2 8 5 4 8 3
##  [6985] 7 1 9 3 3 8 1 9 3 8 6 1 1 2 6 1 1 7 1 4 9 1 1 5 8 8 1 9 4 3 1 2 1 1 5 1
##  [7021] 1 9 3 9 7 3 2 3 8 3 9 1 1 1 9 1 2 5 3 5 3 3 1 1 1 2 8 9 6 8 2 8 1 3 9 2
##  [7057] 1 7 3 1 8 1 7 5 3 3 2 1 7 1 5 8 8 1 1 5 6 9 1 1 2 5 2 1 2 8 9 1 3 8 7 8
##  [7093] 5 8 1 1 7 7 1 8 2 3 8 1 8 3 7 3 2 3 1 3 1 8 1 5 2 8 1 9 8 5 5 5 7 3 8 1
##  [7129] 9 1 1 1 6 3 1 2 7 1 8 1 1 8 3 3 1 8 2 5 1 8 1 6 8 1 3 2 8 9 9 1 2 7 3 3
##  [7165] 3 9 8 7 3 1 1 1 1 8 9 3 1 2 1 7 1 2 9 3 6 3 1 3 8 2 1 3 2 1 1 1 1 7 3 6
##  [7201] 1 1 1 3 1 9 9 8 3 3 1 2 9 1 9 1 9 3 6 3 6 8 3 3 8 7 2 3 6 1 9 9 6 3 6 3
##  [7237] 1 3 2 1 9 2 7 5 7 5 6 9 3 3 9 7 1 1 2 1 1 4 1 1 3 9 9 2 5 1 9 3 3 3 5 1
##  [7273] 2 9 5 1 3 2 6 2 1 6 3 8 1 1 2 6 9 7 1 7 1 8 9 7 8 3 8 9 8 9 1 3 1 5 9 1
##  [7309] 5 9 8 3 1 1 6 9 1 6 5 1 5 7 1 2 5 3 3 8 1 3 9 9 7 7 6 3 9 3 8 9 5 1 3 9
##  [7345] 8 1 6 1 5 3 8 8 7 3 9 3 6 5 3 5 1 9 2 2 7 8 3 7 7 1 1 1 5 7 2 8 3 2 3 1
##  [7381] 9 1 3 8 3 2 3 1 2 1 1 1 2 8 1 1 1 9 6 6 8 1 3 8 5 1 2 1 1 8 2 2 8 1 8 1
##  [7417] 7 3 3 1 3 1 1 2 1 1 8 3 1 1 7 2 1 1 3 1 7 6 8 1 8 7 8 2 3 3 5 1 8 1 7 7
##  [7453] 1 4 6 3 1 2 3 1 3 3 2 5 1 3 1 9 2 3 1 1 1 6 6 9 1 1 2 1 6 9 6 3 9 1 2 8
##  [7489] 7 4 9 2 1 3 3 6 3 5 6 5 3 4 1 8 1 3 8 1 2 1 3 9 2 1 3 8 1 9 3 8 1 2 9 1
##  [7525] 3 1 3 8 9 3 9 1 2 3 3 8 5 1 7 1 5 2 1 3 9 1 1 1 9 2 9 2 1 1 1 1 6 1 8 6
##  [7561] 1 3 1 8 2 9 1 8 1 7 6 5 3 5 7 9 1 2 1 7 1 1 8 8 3 8 9 3 8 3 9 2 8 3 3 2
##  [7597] 1 2 1 3 2 1 9 2 2 7 3 1 8 3 5 3 2 1 8 8 3 1 8 2 9 9 1 3 9 9 9 1 1 9 2 9
##  [7633] 9 3 3 7 4 6 8 6 1 8 9 6 7 9 1 1 9 1 6 2 1 6 2 1 2 3 1 1 1 2 1 1 3 9 3 2
##  [7669] 7 5 1 1 2 5 2 3 1 9 5 7 3 9 1 1 6 9 1 1 1 1 8 9 9 3 7 8 6 7 7 1 1 8 1 6
##  [7705] 3 3 9 1 1 4 1 2 2 5 1 8 3 3 4 1 5 3 9 3 3 3 1 1 1 1 6 2 1 6 1 3 1 8 9 5
##  [7741] 3 8 5 3 9 3 9 1 1 5 3 9 9 8 3 7 9 1 1 1 6 5 2 1 3 7 9 4 1 5 1 9 9 7 1 6
##  [7777] 9 9 1 8 5 4 3 1 1 8 1 7 8 5 5 2 1 8 1 1 7 1 5 3 1 5 2 6 7 8 3 2 9 3 9 1
##  [7813] 8 3 3 1 9 8 1 1 8 1 7 1 9 9 9 1 7 9 9 3 3 1 7 1 2 9 6 1 1 3 5 3 7 9 2 8
##  [7849] 2 8 3 3 9 1 1 9 7 9 9 1 3 8 5 1 3 6 9 7 3 6 1 2 1 3 1 3 9 3 8 2 2 8 7 8
##  [7885] 5 7 1 1 3 2 1 3 7 5 3 3 1 7 3 8 6 6 3 1 8 3 1 9 3 7 1 9 9 3 2 5 2 3 6 6
##  [7921] 5 1 9 2 2 8 1 3 1 3 1 1 2 3 9 8 1 2 3 3 7 2 8 1 7 8 5 9 9 2 5 1 5 1 9 8
##  [7957] 6 8 3 1 3 9 9 3 2 2 5 3 2 2 9 7 7 7 2 8 1 1 9 3 6 3 1 9 5 9 3 1 7 3 9 8
##  [7993] 1 8 1 5 5 8 2 5 1 4 7 3 3 9 1 1 1 1 2 9 5 8 3 5 3 6 3 2 9 1 2 2 3 2 1 3
##  [8029] 3 6 3 3 7 1 2 3 6 6 2 9 3 9 7 1 8 5 1 9 1 1 9 3 1 3 8 1 1 5 1 2 1 8 3 1
##  [8065] 8 1 2 5 9 9 9 6 1 3 1 1 1 7 9 1 2 6 3 6 3 9 1 2 1 1 3 3 2 2 8 2 1 2 1 8
##  [8101] 3 6 1 1 3 3 6 1 3 2 1 1 3 1 9 1 1 6 3 9 1 3 2 7 5 8 3 8 5 9 5 1 1 8 9 6
##  [8137] 3 1 2 5 8 3 3 3 3 4 3 8 5 9 6 3 7 9 5 1 1 9 3 8 1 3 3 5 3 9 8 2 7 9 8 1
##  [8173] 3 1 6 3 1 2 5 7 4 1 9 5 1 3 7 2 3 1 7 9 6 1 9 2 1 1 1 3 1 8 3 9 6 9 7 3
##  [8209] 6 7 3 3 7 3 9 3 1 8 1 8 9 1 9 1 8 8 9 9 1 9 3 2 1 1 9 3 8 2 7 6 1 9 5 4
##  [8245] 3 3 5 8 8 3 8 3 1 3 9 1 3 7 6 1 2 8 7 1 3 2 1 9 6 2 3 1 9 5 2 1 3 8 3 1
##  [8281] 3 5 6 1 1 8 6 6 1 1 8 1 8 5 7 1 7 9 3 3 1 3 8 9 9 1 1 9 1 9 5 2 5 2 5 2
##  [8317] 7 8 6 6 3 1 4 1 3 1 1 1 3 8 8 3 3 8 1 2 1 3 3 1 2 9 3 1 3 2 5 5 3 5 1 9
##  [8353] 2 8 1 9 8 9 9 8 1 3 3 1 3 2 1 2 2 6 3 2 3 1 9 3 9 7 8 8 2 7 8 7 1 1 3 7
##  [8389] 9 3 3 1 1 7 1 9 3 1 2 9 9 5 9 6 3 8 9 5 7 1 1 8 2 7 9 5 1 9 1 7 1 2 1 1
##  [8425] 9 3 2 6 5 6 1 1 3 8 1 9 2 1 6 3 1 1 1 1 2 3 9 1 1 3 7 5 2 1 4 8 1 7 1 1
##  [8461] 8 7 2 1 3 1 9 3 7 8 1 3 5 3 3 9 1 3 9 9 8 7 7 1 1 7 9 3 5 6 9 8 8 9 8 9
##  [8497] 1 9 8 1 9 2 1 3 2 1 3 1 7 5 3 9 1 3 1 9 1 2 9 1 3 2 3 6 3 1 7 8 9 2 2 3
##  [8533] 1 3 7 1 1 3 1 1 1 5 8 3 3 4 9 3 5 4 8 3 8 7 7 3 3 2 7 9 7 1 7 3 5 1 3 7
##  [8569] 7 1 1 3 3 3 5 9 7 1 3 3 2 8 6 9 2 5 4 5 1 2 3 9 3 8 3 6 8 7 5 6 5 8 1 3
##  [8605] 3 1 3 8 7 3 1 3 8 5 1 3 7 9 6 1 9 6 3 2 3 1 2 3 1 1 8 9 7 8 1 6 8 1 1 1
##  [8641] 3 9 9 1 5 9 2 1 1 2 9 1 5 8 3 8 8 9 3 9 1 3 9 9 7 8 6 1 6 3 2 9 2 1 7 1
##  [8677] 6 9 2 1 1 7 3 9 1 8 9 6 8 3 9 3 8 1 9 3 3 3 9 9 3 4 7 1 6 6 3 3 8 9 3 5
##  [8713] 1 1 3 9 8 5 2 2 8 9 3 7 7 1 7 2 1 1 3 8 8 7 5 1 1 3 2 9 9 6 3 1 3 5 7 8
##  [8749] 7 8 7 6 5 7 1 1 1 5 1 1 7 8 7 9 3 2 2 9 5 6 3 9 8 8 2 1 5 1 7 8 1 2 8 8
##  [8785] 1 6 2 2 6 9 5 3 6 5 1 6 7 5 8 6 1 6 3 1 2 1 2 1 8 1 2 1 1 9 6 3 7 3 1 5
##  [8821] 2 9 3 5 3 3 5 9 9 3 5 1 7 1 9 8 3 8 1 3 9 1 9 2 3 8 3 5 9 8 3 8 8 8 1 1
##  [8857] 1 7 8 2 1 1 1 3 5 6 3 3 1 3 1 3 8 3 9 4 3 1 3 6 9 7 7 3 3 8 2 5 1 2 9 4
##  [8893] 3 5 1 1 8 9 9 5 3 1 8 9 8 3 1 9 3 1 3 3 2 1 9 7 6 2 3 5 7 3 8 6 5 1 1 1
##  [8929] 1 3 8 8 1 1 1 2 1 2 9 1 1 7 3 3 9 1 7 8 5 3 5 1 9 3 8 8 8 1 9 1 2 5 3 1
##  [8965] 9 5 2 9 5 1 5 9 3 1 5 5 7 3 8 9 8 3 1 2 8 9 3 6 3 2 9 7 2 1 1 5 9 8 2 7
##  [9001] 8 7 5 9 9 1 1 1 8 4 5 9 3 3 7 3 1 2 8 8 3 5 6 3 1 3 8 2 3 2 3 1 6 9 8 9
##  [9037] 8 2 2 1 9 3 9 9 1 2 9 3 5 7 1 7 1 4 3 5 2 8 7 9 1 1 8 9 8 2 6 9 3 1 1 3
##  [9073] 9 1 9 3 2 3 3 1 9 8 9 2 3 3 5 1 6 6 3 7 2 1 9 9 9 9 3 8 2 1 1 3 6 7 7 3
##  [9109] 3 9 8 7 8 1 3 5 3 7 2 8 3 1 1 6 1 1 9 9 8 1 9 1 9 3 8 1 9 1 1 9 9 1 1 4
##  [9145] 9 9 5 2 3 3 1 6 5 6 2 9 3 1 9 5 1 3 3 9 1 1 8 6 2 5 1 5 1 3 3 8 6 9 3 9
##  [9181] 6 7 9 1 5 1 7 5 6 8 7 3 3 6 1 8 1 9 8 3 3 1 7 9 1 9 3 8 5 9 1 9 3 1 2 2
##  [9217] 2 3 8 5 6 2 8 7 2 1 9 3 7 1 5 1 1 1 1 1 3 8 1 9 3 2 7 6 3 5 5 9 1 8 3 5
##  [9253] 3 1 6 6 1 3 2 9 5 7 5 1 2 6 8 1 1 8 9 7 9 3 8 3 3 9 3 1 7 7 1 3 6 6 1 8
##  [9289] 7 1 2 1 9 7 9 7 8 3 5 7 8 1 8 2 9 3 9 5 7 1 9 3 9 1 3 6 9 1 3 9 6 3 2 3
##  [9325] 9 8 1 8 1 6 9 2 5 3 1 3 9 3 4 6 9 1 9 3 5 1 6 3 5 3 8 8 4 1 2 2 8 1 5 3
##  [9361] 2 9 3 3 3 6 8 9 2 9 1 7 1 8 8 6 9 1 3 9 7 6 9 8 1 1 1 9 4 7 3 1 3 1 8 3
##  [9397] 8 2 3 9 5 3 1 1 1 1 6 9 3 8 8 1 5 3 3 1 2 6 3 3 1 5 8 3 5 7 1 6 1 9 3 2
##  [9433] 1 1 1 9 1 2 6 2 2 3 9 2 3 1 6 3 1 1 1 9 3 7 6 6 3 3 1 3 1 7 1 3 9 2 5 3
##  [9469] 9 9 1 1 3 1 8 3 1 8 9 8 1 7 2 1 5 1 8 7 6 5 9 5 9 1 3 4 1 8 3 2 8 8 7 1
##  [9505] 1 3 9 8 8 9 1 3 6 9 8 1 3 7 1 9 3 5 5 8 7 8 9 8 5 3 2 3 7 3 9 6 6 1 1 1
##  [9541] 1 9 2 8 1 1 7 8 9 2 3 1 9 9 6 7 1 1 7 3 9 1 2 1 9 7 3 2 9 3 9 1 1 3 6 1
##  [9577] 5 1 6 2 1 9 2 6 9 3 1 6 3 9 9 2 2 7 3 3 8 1 6 3 8 1 1 2 9 2 5 5 2 6 2 8
##  [9613] 8 3 8 3 1 3 3 1 8 3 6 8 3 9 4 3 1 3 3 3 9 5 6 2 1 3 1 1 7 8 2 1 1 3 7 6
##  [9649] 3 2 2 1 1 1 5 8 2 1 8 1 8 1 7 1 1 3 6 2 1 5 1 3 1 1 1 8 1 5 2 1 1 2 8 8
##  [9685] 2 7 3 3 7 4 2 3 6 7 1 1 1 8 3 3 8 6 7 1 2 7 9 1 3 2 4 1 1 1 2 3 7 3 8 3
##  [9721] 9 9 3 7 2 5 5 3 9 8 7 3 8 9 1 1 5 2 3 8 3 3 1 1 7 8 5 7 8 1 1 3 8 5 1 1
##  [9757] 1 6 3 1 1 3 2 3 4 3 7 1 8 3 6 3 8 3 1 8 4 1 3 5 1 5 7 1 2 1 3 9 3 3 9 2
##  [9793] 3 1 9 1 1 8 3 1 9 1 2 9 3 8 8 8 3 1 3 3 8 2 3 1 2 1 5 5 6 1 1 8 3 1 3 7
##  [9829] 3 1 3 3 1 7 9 8 1 9 6 5 1 9 6 8 1 3 7 3 2 2 7 5 9 2 5 1 1 9 1 8 6 1 9 1
##  [9865] 1 7 7 3 1 9 3 3 1 3 1 7 1 1 1 8 1 7 8 9 1 1 1 3 1 3 1 6 3 1 1 9 1 8 3 7
##  [9901] 9 1 1 9 2 9 1 1 9 9 9 1 3 8 3 8 1 7 8 8 3 6 3 2 9 1 3 1 9 1 8 7 5 5 2 7
##  [9937] 3 1 9 9 3 8 8 3 6 9 7 9 9 6 9 9 9 1 6 6 7 8 3 9 8 1 1 1 3 1 1 3 1 7 3 3
##  [9973] 2 2 3 1 3 1 9 6 8 5 3 3 6 7 9 5 6 3 8 1 2 1 9 8 8 8 9 9 3 6 1 5 9 9 2 1
## [10009] 9 3 1 9 3 9 1 9 1 8 1 5 1 9 7 1 6 3 8 8 1 5 3 1 7 5 1 1 9 9 5 6 3 6 3 7
## [10045] 1 6 2 9 3 1 5 9 1 1 2 3 1 5 9 5 7 8 1 8 2 9 3 5 7 6 8 1 8 7 6 8 3 1 1 3
## [10081] 2 1 7 3 3 1 7 1 3 3 3 1 8 3 1 3 9 1 2 1 6 2 1 2 3 9 7 1 9 7 6 3 5 9 1 6
## [10117] 5 3 8 5 8 9 3 1 9 1 1 9 5 7 7 6 1 9 1 3 8 1 9 1 6 8 1 9 5 3 9 1 1 1 3 1
## [10153] 2 3 3 3 2 6 2 7 2 3 7 8 1 8 3 7 6 5 9 6 3 3 4 9 1 3 3 1 7 3 2 3 2 1 7 1
## [10189] 8 7 8 9 9 8 1 9 6 3 6 8 8 8 1 6 3 2 4 8 9 8 3 9 1 1 9 1 6 1 5 1 8 2 1 2
## [10225] 1 8 3 1 1 1 7 5 1 1 6 1 3 1 1 2 1 3 6 9 8 9 1 5 1 9 1 1 1 1 7 7 5 1 9 5
## [10261] 3 1 8 5 6 2 9 2 2 1 9 1 1 1 7 6 6 2 1 1 8 2 8 3 5 9 1 3 5 1 3 5 7 1 1 3
## [10297] 9 3 8 9 9 7 1 9 1 8 1 3 8 5 4 9 6 8 3 3 7 2 3 1 4 9 1 9 9 1 8 7 1 1 8 3
## [10333] 1 8 8 3 1 7 8 7 3 9 5 1 4 8 8 3 3 2 9 3 1 7 1 9 8 9 6 1 3 8 2 2 7 8 9 1
## [10369] 9 3 5 9 7 8 9 7 3 9 7 2 9 2 3 8 3 6 3 1 8 3 9 8 8 3 1 4 8 7 3 8 1 2 9 9
## [10405] 1 3 1 9 7 9 5 6 9 1 7 9 5 8 6 8 1 9 7 8 9 3 9 7 1 1 5 6 8 3 1 3 1 1 8 7
## [10441] 8 1 9 8 1 3 1 6 1 1 9 5 8 9 8 9 3 1 3 3 1 5 5 3 3 1 3 2 1 1 3 1 1 5 3 1
## [10477] 3 8 9 8 1 3 9 3 3 1 1 1 7 1 1 1 3 3 7 1 9 6 5 3 9 1 6 1 1 1 7 1 8 9 2 7
## [10513] 1 5 3 1 5 5 9 9 1 1 8 4 1 3 1 3 3 8 3 3 5 2 9 8 7 5 1 8 1 9 1 9 3 9 7 1
## [10549] 6 9 1 7 5 9 6 1 1 3 5 1 1 7 9 3 3 9 3 1 5 2 6 1 6 8 8 5 2 1 1 9 3 3 3 1
## [10585] 9 8 8 3 3 3 1 2 5 7 3 7 1 7 3 7 9 8 6 3 1 8 5 1 2 8 6 1 8 2 1 2 8 1 1 3
## [10621] 8 3 9 5 1 7 9 3 9 2 5 1 1 6 8 9 5 3 9 8 2 1 2 8 8 5 9 1 5 3 3 1 3 1 6 1
## [10657] 3 8 3 1 7 1 8 7 3 1 1 9 8 7 1 4 2 5 2 5 3 9 9 5 6 1 7 1 3 2 1 9 9 2 3 2
## [10693] 2 1 8 1 3 8 5 3 7 9 5 3 7 6 7 2 3 5 1 3 5 3 1 8 1 3 3 1 3 8 5 1 3 6 8 3
## [10729] 1 1 8 3 7 3 1 1 8 9 3 3 7 1 8 1 2 9 8 3 7 8 8 6 6 1 9 2 9 8 1 8 8 8 3 9
## [10765] 8 2 3 8 3 7 8 6 5 6 1 5 3 9 6 6 8 6 7 3 6 7 9 5 5 1 7 3 2 8 2 1 5 1 2 7
## [10801] 8 1 1 8 7 5 8 9 3 1 6 8 3 2 6 2 7 7 1 1 9 7 2 5 2 8 1 6 9 3 8 2 2 7 2 8
## [10837] 9 2 1 9 3 3 1 8 9 2 8 7 1 2 8 2 1 8 2 1 7 3 7 5 1 8 6 3 3 1 1 8 3 7 3 1
## [10873] 7 6 9 6 9 9 1 1 3 5 1 1 8 3 1 9 5 1 6 7 3 7 1 7 1 3 8 7 9 6 8 9 1 3 9 1
## [10909] 8 1 9 2 6 8 5 5 5 9 7 1 6 9 5 7 1 8 3 8 1 8 1 3 3 9 1 5 3 1 5 1 1 3 1 4
## [10945] 1 6 7 2 8 3 1 6 8 7 5 3 1 6 7 3 3 5 9 1 3 8 9 8 9 1 2 7 6 5 6 9 3 1 4 1
## [10981] 3 1 3 8 9 6 3 1 3 6 5 8 3 7 1 6 9 3 8 8 1 9 7 8 3 3 1 6 3 1 1 6 1 3 9 1
## [11017] 2 1 3 9 6 3 1 3 9 1 9 8 1 1 1 1 8 1 1 1 9 3 3 1 1 9 3 3 9 2 6 1 2 8 3 1
## [11053] 8 3 3 3 1 3 6 5 9 1 6 3 6 1 7 9 5 3 3 7 6 9 6 1 2 1 1 6 3 1 7 2 3 3 6 1
## [11089] 1 3 1 7 8 1 1 3 1 6 2 7 7 6 9 9 3 7 8 9 9 1 9 1 3 6 1 8 8 6 1 1 9 1 2 6
## [11125] 3 6 7 2 6 7 7 9 1 6 9 7 5 3 5 5 8 3 5 2 1 3 6 7 2 2 3 1 3 3 6 1 8 5 1 5
## [11161] 3 1 1 1 3 9 8 7 5 6 3 1 3 1 8 9 1 1 1 8 7 5 3 1 8 3 3 1 8 3 1 1 5 9 1 1
## [11197] 7 9 4 7 9 3 5 3 1 1 6 1 1 2 1 1 9 4 6 3 6 6 5 3 2 7 3 8 1 1 8 6 6 8 7 1
## [11233] 1 1 2 1 6 7 7 8 2 2 3 6 5 5 1 7 9 1 7 6 3 7 9 1 1 5 1 1 4 9 3 9 5 1 3 9
## [11269] 3 2 1 8 8 6 3 3 6 6 3 1 1 7 8 1 6 3 3 9 6 1 1 1 8 2 1 3 6 8 7 1 1 1 2 1
## [11305] 1 3 6 9 9 7 1 7 7 7 8 1 3 3 1 1 6 3 7 6 1 9 8 3 8 2 1 1 1 1 1 7 6 9 1 3
## [11341] 3 1 7 8 9 1 1 3 8 9 2 8 3 3 3 7 3 1 2 1 1 1 5 9 8 8 9 7 8 1 3 1 7 2 1 5
## [11377] 3 5 3 1 3 8 9 1 5 1 1 2 9 8 3 5 8 5 1 8 8 7 9 3 3 2 3 9 8 1 1 9 8 5 1 3
## [11413] 1 1 2 1 3 1 5 1 1 8 7 2 7 1 1 5 1 7 2 7 7 2 9 3 2 9 1 6 5 9 1 3 1 6 3 3
## [11449] 3 7 3 3 1 7 1 8 1 3 1 9 2 1 9 7 8 3 8 1 3 6 1 9 7 6 4 1 1 9 3 7 5 3 9 7
## [11485] 7 9 6 1 3 2 1 8 6 8 4 1 5 9 9 1 3 1 3 1 1 3 6 5 1 1 1 6 2 5 1 8 2 3 3 1
## [11521] 1 1 9 7 7 9 1 8 9 8 1 1 3 7 6 1 3 1 1 5 9 5 3 9 9 3 9 2 4 5 8 3 1 9 3 1
## [11557] 1 1 9 3 8 1 7 5 1 8 1 8 9 1 1 1 7 8 8 7 3 6 1 6 7 9 1 3 3 6 1 3 3 8 8 3
## [11593] 1 1 7 3 3 1 1 6 3 1 1 3 1 9 9 9 1 2 1 3 5 9 1 8 3 8 8 8 1 5 1 3 7 3 3 6
## [11629] 9 3 7 1 1 1 5 3 6 8 3 7 8 5 1 1 2 6 1 2 1 5 8 7 1 3 8 1 9 7 7 9 9 3 8 3
## [11665] 7 3 1 6 2 5 6 9 1 3 8 6 5 7 1 1 1 6 1 7 3 8 3 1 2 8 5 9 1 1 8 9 1 1 1 9
## [11701] 1 1 3 1 5 1 1 8 9 3 1 1 6 9 8 1 1 8 7 1 6 5 8 9 8 7 7 1 5 1 5 7 7 5 1 1
## [11737] 2 9 1 1 3 2 7 1 1 1 1 5 9 6 7 7 1 1 3 1 5 8 1 1 7 8 4 5 8 3 6 1 3 7 1 1
## [11773] 3 7 1 5 1 9 2 3 3 4 3 8 6 7 1 3 8 8 6 1 3 5 3 5 9 1 1 8 6 5 1 9 1 1 9 3
## [11809] 6 8 9 2 1 1 8 1 3 2 3 1 6 6 8 3 3 5 5 7 1 3 9 1 3 8 1 3 2 3 1 6 1 5 2 1
## [11845] 3 9 1 7 1 3 6 1 3 3 7 6 3 1 3 5 1 9 3 2 1 6 1 9 7 8 5 2 1 7 9 6 9 6 8 8
## [11881] 2 8 8 6 3 1 1 3 2 9 9 3 1 1 5 1 8 3 1 8 3 1 1 1 3 3 3 1 3 1 8 6 3 6 2 1
## [11917] 2 8 1 9 8 3 7 8 9 3 5 8 1 5 3 7 2 2 3 2 6 3 3 5 9 7 6 3 8 1 1 1 7 3 7 7
## [11953] 3 1 9 9 9 8 9 6 7 1 8 2 9 1 1 6 8 9 3 9 7 9 1 6 1 1 5 5 3 1 2 1 1 1 1 6
## [11989] 7 3 3 1 9 3 6 9 7 7 1 3 3 2 3 1 3 5 3 9 7 5 3 1 3 3 1 5 6 5 3 9 3 8 6 4
## [12025] 1 3 8 1 3 8 1 6 8 3 5 5 7 3 6 2 8 5 1 1 6 1 1 1 1 5 3 1 3 8 3 4 7 6 7 1
## [12061] 8 7 1 1 3 1 3 5 7 8 5 7 6 1 3 3 5 6 2 6 6 7 1 1 1 7 9 2 1 5 6 3 3 8 7 5
## [12097] 3 9 8 1 2 1 9 1 1 6 9 3 3 1 8 6 9 3 2 3 2 1 1 1 3 6 3 8 3 5 9 9 8 7 6 3
## [12133] 1 1 3 1 1 2 8 1 8 3 1 8 1 2 5 2 2 9 7 8 5 7 7 6 8 5 3 1 1 3 1 3 6 1 3 8
## [12169] 9 3 1 1 3 8 1 3 3 3 1 3 9 8 9 6 8 9 1 3 8 8 2 1 8 3 1 2 8 2 9 8 6 5 6 3
## [12205] 6 1 8 3 6 9 7 1 1 7 8 1 6 1 1 5 9 9 6 9 5 2 3 6 8 8 7 9 3 7 6 1 1 8 6 7
## [12241] 3 6 2 6 6 5 1 9 1 1 9 1 5 3 8 8 1 1 3 7 8 1 1 8 5 1 2 3 1 1 7 3 6 1 7 2
## [12277] 5 5 2 5 3 5 1 1 6 8 8 7 3 8 6 9 9 6 9 3 1 2 3 3 7 6 3 6 6 6 2 7 1 1 1 9
## [12313] 8 1 6 3 1 1 1 7 8 4 1 6 5 9 3 5 1 9 1 1 6 2 3 3 1 5 9 2 1 1 1 7 2 3 6 6
## [12349] 9 7 9 7 3 5 8 5 1 9 1 1 2 6 8 1 8 9 3 8 9 9 1 1 2 8 3 9 5 7 9 3 1 1 7 9
## [12385] 3 3 2 1 1 8 3 3 1 6 3 9 3 3 3 7 9 1 3 9 3 3 9 1 1 1 1 8 1 7 8 3 1 1 3 2
## [12421] 9 1 7 3 2 1 8 1 1 1 9 6 6 9 9 4 8 6 9 1 3 3 9 3 7 5 1 3 3 9 8 1 1 9 7 8
## [12457] 8 6 3 7 3 5 3 6 9 7 3 3 5 3 8 7 2 3 8 5 1 1 1 3 1 3 3 1 5 9 5 3 9 7 9 3
## [12493] 1 1 3 1 7 7 9 9 6 6 7 3 3 1 1 9 7 3 6 6 7 8 9 1 2 1 1 7 7 8 8 1 3 6 1 9
## [12529] 1 3 8 8 9 9 3 1 9 8 1 3 8 6 1 1 1 1 1 1 5 6 1 6 8 6 9 1 7 1 8 9 1 7 7 9
## [12565] 5 3 9 1 7 2 1 7 7 1 3 6 8 2 1 3 9 6 1 6 1 8 1 1 6 3 3 9 1 2 3 1 1 7 1 7
## [12601] 6 1 1 1 2 1 8 7 2 1 7 1 1 1 9 1 6 6 3 1 3 9 1 9 6 6 8 5 6 6 3 5 8 1 9 1
## [12637] 2 1 8 8 3 7 3 9 2 1 7 5 2 1 7 1 1 9 8 1 5 1 1 9 1 1 1 1 5 1 6 8 1 7 7 1
## [12673] 8 6 5 5 3 1 3 6 9 5 8 8 2 2 3 6 1 1 1 6 9 2 7 1 3 1 1 1 2 9 4 9 3 1 3 3
## [12709] 3 1 1 3 1 1 1 7 9 5 2 8 8 3 7 6 2 1 1 2 6 2 1 5 3 2 3 7 1 3 1 2 1 5 1 3
## [12745] 1 3 5 4 3 3 6 8 8 8 9 8 7 3 8 1 7 9 7 9 1 5 2 1 5 3 6 1 6 3 3 7 8 1 6 5
## [12781] 5 6 5 3 3 6 1 9 3 7 8 8 8 8 1 5 9 7 9 8 1 8 1 3 6 5 3 3 1 9 9 7 2 1 6 7
## [12817] 1 9 9 3 7 3 2 9 5 1 3 8 8 3 1 6 1 9 2 9 3 1 1 5 1 6 7 8 6 9 1 6 3 9 1 1
## [12853] 1 9 3 3 9 2 6 3 1 8 3 1 1 3 3 3 7 7 3 8 8 7 3 6 1 3 1 1 6 1 1 1 6 5 5 3
## [12889] 9 9 3 1 2 1 5 8 8 7 1 3 9 3 8 3 1 1 9 5 8 9 7 3 1 6 5 9 8 2 3 7 9 8 2 6
## [12925] 8 3 9 1 1 7 3 8 3 3 8 6 8 5 6 9 9 8 3 1 5 1 6 3 3 3 2 1 8 8 8 5 1 9 9 3
## [12961] 6 1 3 9 1 3 9 1 8 8 6 8 9 1 3 8 1 3 3 9 9 1 3 9 7 9 5 8 9 8 3 1 6 1 3 1
## [12997] 3 6 6 5 3 6 1 1 3 3 1 6 1 6 3 8 1 6 1 8 1 9 1 7 5 8 9 9 2 3 9 1 9 1 8 6
## [13033] 9 9 9 6 9 5 1 3 8 1 1 5 1 9 3 5 6 3 5 3 9 1 3 8 3 2 1 5 9 1 9 6 1 3 8 5
## [13069] 8 6 8 6 3 3 2 1 1 7 5 5 1 8 5 1 8 9 4 3 1 9 1 9 1 3 3 3 1 1 3 7 3 3 7 4
## [13105] 1 8 4 5 9 3 1 1 6 2 9 5 2 1 8 8 1 5 5 5 6 8 3 2 7 3 6 9 9 8 1 1 7 1 6 1
## [13141] 3 1 9 9 3 9 8 2 1 1 9 8 1 9 1 7 1 7 2 1 1 3 1 7 1 1 9 1 1 8 3 7 9 1 8 1
## [13177] 1 3 8 1 3 9 3 8 3 6 1 8 5 1 3 9 8 1 1 3 8 1 9 1 9 2 3 1 5 3 9 7 3 3 6 3
## [13213] 3 3 1 9 8 6 5 3 1 3 5 6 3 3 6 1 6 1 2 9 9 4 2 2 8 9 6 3 6 1 2 3 1 2 1 9
## [13249] 6 3 2 1 7 5 8 7 9 5 8 9 3 1 1 5 1 1 3 3 2 8 7 1 2 5 1 2 6 8 7 9 9 1 3 3
## [13285] 1 1 1 8 1 9 2 1 3 7 1 2 5 3 1 7 3 7 3 7 9 5 1 3 6 1 3 1 5 3 3 3 6 6 3 7
## [13321] 7 3 1 9 1 3 3 1 3 9 3 1 1 9 3 1 1 9 1 1 1 8 1 8 9 3 1 9 5 6 1 1 1 6 1 6
## [13357] 7 8 6 5 8 6 1 9 2 1 1 1 1 3 2 8 1 7 6 1 1 1 1 5 1 6 4 9 9 2 1 5 9 9 3 1
## [13393] 8 7 1 1 2 1 6 3 2 7 3 3 7 1 3 3 6 1 9 8 9 7 3 8 1 3 8 5 7 6 5 1 3 5 1 9
## [13429] 5 8 9 8 8 1 8 8 2 7 5 9 1 1 9 9 6 8 2 1 7 9 8 6 6 8 2 3 1 9 9 1 3 3 9 1
## [13465] 9 7 6 6 1 1 1 9 3 2 1 2 1 1 5 8 5 3 1 1 9 1 1 1 8 7 6 3 1 3 1 9 7 1 2 6
## [13501] 3 1 3 2 3 1 1 8 8 9 6 9 3 3 1 1 1 8 8 7 6 3 5 1 6 6 8 1 9 3 2 1 9 7 3 1
## [13537] 1 8 6 6 9 1 8 9 1 5 1 9 9 6 1 8 3 1 9 3 9 4 1 8 1 7 8 5 1 9 2 8 9 6 1 1
## [13573] 8 3 8 7 8 7 5 1 1 5 8 7 8 8 1 3 6 5 4 5 9 6 3 1 8 7 7 6 3 8 1 6 1 6 3 9
## [13609] 7 1 2 1 6 1 1 3 7 3 1 3 7 1 1 1 5 9 9 8 7 5 9 2 1 3 3 2 6 1 1 1 1 5 1 2
## [13645] 1 9 9 1 5 9 9 3 9 5 1 5 9 1 3 5 3 8 8 1 1 8 1 1 8 3 8 1 9 8 5 7 3 3 9 5
## [13681] 1 3 1 3 7 2 1 3 1 2 9 2 6 6 7 5 9 3 1 5 3 3 7 8 1 1 4 9 7 3 3 9 5 7 8 3
## [13717] 1 9 3 7 3 7 1 9 6 1 9 3 3 1 9 8 3 1 1 1 2 2 8 9 8 7 5 8 1 6 8 5 7 8 3 1
## [13753] 8 3 1 8 9 1 7 1 3 9 2 8 5 1 7 3 3 6 5 5 8 7 5 9 7 6 1 3 4 3 8 9 1 9 8 3
## [13789] 5 4 7 1 1 1 9 3 8 8 7 8 3 1 9 5 2 8 9 3 6 1 1 3 5 7 1 9 1 1 3 9 5 3 8 1
## [13825] 1 5 9 1 2 3 5 1 7 1 8 6 1 1 7 1 8 9 1 6 1 8 3 1 1 3 9 3 9 7 1 9 7 8 1 1
## [13861] 9 3 6 5 1 3 9 9 8 8 6 1 8 1 8 8 1 1 8 6 4 1 8 1 8 1 9 1 8 3 6 1 7 3 8 3
## [13897] 6 7 8 1 1 9 3 1 9 1 1 7 1 9 3 3 5 8 1 3 6 7 3 5 1 3 3 3 9 6 5 3 6 8 3 6
## [13933] 3 6 2 2 2 5 1 6 1 6 3 3 3 9 1 4 1 1 7 6 2 4 9 8 6 5 1 1 2 7 1 5 2 8 1 6
## [13969] 1 9 1 3 5 3 9 9 1 3 5 3 9 2 9 3 8 6 9 6 9 7 8 3 1 8 5 1 1 6 8 1 1 9 7 9
## [14005] 6 8 1 7 1 6 1 2 9 7 1 9 1 1 1 1 2 3 5 8 3 8 1 3 3 5 3 1 7 5 1 3 9 8 8 7
## [14041] 1 7 5 9 8 1 9 3 8 1 8 9 1 1 9 5 2 3 7 7 8 8 3 1 1 8 1 9 7 3 1 4 3 3 3 3
## [14077] 2 6 1 9 9 3 5 1 3 1 3 9 1 9 8 9 9 3 1 3 9 9 3 9 3 5 1 3 8 2 8 5 9 2 1 9
## [14113] 3 6 9 9 2 1 1 3 9 1 3 1 2 1 9 5 9 1 6 3 6 1 3 1 9 6 6 9 3 3 2 3 1 2 1 1
## [14149] 9 7 7 1 7 8 8 6 7 1 3 3 1 9 1 5 9 1 3 6 9 8 3 7 3 8 3 1 9 3 8 7 3 1 1 2
## [14185] 9 8 9 5 9 2 1 5 3 1 8 1 1 7 8 3 5 1 3 5 3 2 7 3 5 1 1 6 3 9 8 5 5 9 5 8
## [14221] 7 1 7 1 3 1 1 6 5 8 7 5 3 8 2 8 1 2 9 1 1 7 9 8 6 5 9 3 1 2 7 8 5 8 1 7
## [14257] 6 3 9 8 3 3 2 1 3 1 1 1 6 8 1 2 8 3 9 3 8 9 3 1 1 8 3 8 3 2 3 9 3 9 8 3
## [14293] 3 1 1 2 7 6 7 1 3 1 1 3 7 2 1 1 1 8 1 3 1 1 8 3 7 7 6 6 5 9 3 1 3 5 7 6
## [14329] 4 1 5 9 3 3 2 6 4 7 1 4 1 2 9 5 1 5 6 4 8 1 7 2 1 5 7 1 3 1 3 9 1 1 1 9
## [14365] 3 1 3 3 1 1 9 6 6 9 7 7 1 1 8 8 1 6 1 9 3 8 1 7 9 4 8 1 3 9 6 1 3 7 3 1
## [14401] 3 3 3 3 3 7 9 6 4 2 2 1 8 1 1 2 3 7 8 1 9 3 8 4 5 1 1 3 3 6 2 1 5 3 8 3
## [14437] 7 3 2 1 1 1 7 1 1 1 3 1 3 6 3 7 9 9 8 7 1 1 8 3 8 9 9 2 4 6 6 6 1 8 3 1
## [14473] 1 9 1 9 1 8 9 3 2 1 1 1 5 3 1 9 1 2 1 2 3 9 8 8 1 1 6 1 6 1 1 3 7 4 1 7
## [14509] 2 8 3 8 2 6 6 1 1 1 6 3 1 3 3 6 7 1 9 8 6 8 7 7 3 6 5 8 9 1 1 2 7 3 1 1
## [14545] 3 1 1 1 7 3 8 9 2 7 1 9 1 1 8 1 2 9 7 3 1 3 6 3 1 1 7 5 6 7 1 2 9 7 3 1
## [14581] 3 9 3 2 5 1 1 9 1 1 1 6 9 8 3 5 1 6 9 5 2 9 3 7 8 3 3 9 1 1 1 8 1 1 1 2
## [14617] 7 8 8 9 1 7 8 3 3 1 9 8 7 1 3 9 3 9 9 1 3 6 2 2 3 6 9 8 9 3 3 8 8 2 1 3
## [14653] 1 2 3 3 8 9 2 3 3 9 9 5 3 9 6 3 1 5 9 6 6 7 1 3 5 9 5 6 3 9 6 7 2 4 7 9
## [14689] 3 1 7 5 1 3 1 5 3 3 2 1 2 6 8 1 3 2 3 7 1 1 3 4 8 3 1 1 1 7 3 5 7 5 1 6
## [14725] 1 3 1 1 5 3 8 9 2 8 3 5 8 9 9 4 9 1 2 2 9 3 8 1 7 6 8 7 7 5 1 9 1 7 1 9
## [14761] 3 1 3 9 4 8 1 1 5 3 1 1 1 2 2 6 1 8 1 7 1 2 3 6 1 3 6 3 2 5 1 8 5 9 8 1
## [14797] 1 1 2 9 1 7 7 3 6 1 8 3 6 3 2 9 5 7 5 6 8 1 8 9 3 1 1 8 9 3 3 9 2 3 8 7
## [14833] 8 1 3 8 8 3 2 7 9 3 5 8 5 5 9 3 3 5 1 1 3 1 6 3 9 9 2 9 3 1 2 5 5 5 2 1
## [14869] 3 6 1 7 1 3 5 6 7 7 3 3 8 1 8 2 1 9 3 1 6 6 1 2 9 3 6 7 2 3 7 3 8 2 6 3
## [14905] 9 8 7 1 1 1 6 1 8 3 5 1 3 1 1 1 3 1 2 9 2 8 1 3 1 8 1 7 5 1 3 7 7 7 2 8
## [14941] 1 1 5 3 1 3 9 1 1 1 8 4 8 1 6 1 1 9 9 1 1 9 1 3 8 9 5 3 2 1 1 7 8 1 6 8
## [14977] 1 9 1 3 1 1 2 7 5 3 7 1 1 8 7 9 8 3 1 2 7 9 1 1 5 5 8 8 9 3 3 5 1 8 3 9
## [15013] 3 5 6 1 1 3 6 1 6 7 1 1 1 2 8 6 8 1 3 8 8 6 1 9 6 1 6 1 1 3 8 8 2 8 1 6
## [15049] 7 9 2 1 3 2 1 1 1 1 8 1 9 6 9 1 8 3 5 6 7 9 3 3 1 8 3 6 1 3 1 2 3 8 5 9
## [15085] 3 8 2 5 5 6 9 3 7 1 3 5 3 7 9 8 8 1 3 9 1 1 8 8 9 3 5 3 1 2 3 3 9 3 1 1
## [15121] 1 1 3 3 7 5 7 7 3 4 7 2 8 6 3 2 3 9 2 6 1 9 3 7 1 1 9 9 6 3 3 1 1 3 3 8
## [15157] 6 9 3 7 2 3 1 3 1 3 7 8 1 7 7 2 5 2 5 6 8 6 5 3 8 1 7 1 3 2 2 4 1 5 1 8
## [15193] 1 9 3 6 8 9 6 7 7 1 3 8 9 6 1 1 5 4 2 2 5 1 1 1 7 6 2 4 9 5 3 2 6 1 8 1
## [15229] 5 3 1 8 7 6 1 3 9 2 7 2 8 1 8 1 9 9 5 1 9 3 1 2 9 5 1 2 9 6 1 6 4 1 4 3
## [15265] 7 8 9 1 3 1 3 1 1 2 9 9 8 8 1 1 8 6 3 3 5 3 1 6 9 9 3 6 8 9 1 2 1 1 1 9
## [15301] 1 8 6 3 8 9 5 8 1 8 3 2 1 9 7 1 1 9 6 3 8 3 3 1 5 6 3 1 7 3 8 7 5 2 1 1
## [15337] 3 1 1 9 6 8 9 1 5 2 3 1 8 9 1 1 7 3 6 9 9 1 9 1 5 6 1 2 3 6 8 1 1 3 3 9
## [15373] 3 1 1 5 3 2 3 6 9 8 6 1 1 2 9 9 2 1 1 3 3 3 8 6 1 1 3 3 8 3 1 8 1 9 9 5
## [15409] 1 1 7 9 1 3 4 1 8 9 6 7 1 1 1 1 9 1 1 8 1 8 1 5 1 5 1 2 9 6 1 6 5 6 3 2
## [15445] 7 4 8 9 3 6 7 3 7 9 1 3 6 5 3 1 1 6 9 6 6 1 1 9 1 1 9 2 1 1 3 1 3 9 8 1
## [15481] 1 5 9 7 8 9 3 9 3 3 3 7 7 8 1 4 1 3 9 8 6 1 2 1 6 5 3 7 9 2 6 7 6 9 1 3
## [15517] 6 9 2 8 5 1 3 9 3 1 7 3 1 2 3 3 1 9 8 8 2 2 1 9 1 1 3 1 5 7 3 9 7 6 9 7
## [15553] 4 7 1 3 3 1 1 1 8 8 5 3 8 5 1 8 2 8 6 3 7 8 2 3 7 4 8 8 2 2 9 6 5 5 7 9
## [15589] 2 7 3 4 9 3 1 2 9 3 2 1 7 8 3 8 1 3 2 6 3 7 7 1 6 2 3 3 3 1 8 8 8 2 7 8
## [15625] 5 1 1 5 9 9 1 3 3 3 3 8 2 1 7 3 7 5 3 2 1 5 8 6 8 1 3 3 7 6 3 2 1 8 3 1
## [15661] 1 9 3 8 9 1 6 2 1 3 3 6 7 3 6 9 2 8 8 3 3 1 6 2 7 8 6 1 6 8 8 1 5 7 3 1
## [15697] 1 9 6 1 8 1 8 5 9 1 3 1 3 8 1 8 3 8 6 6 1 1 9 3 3 1 1 1 1 3 9 3 1 3 6 5
## [15733] 1 4 8 7 4 9 1 8 9 8 3 6 1 1 1 1 1 7 1 2 3 5 8 9 1 9 1 1 5 8 1 1 3 1 1 3
## [15769] 6 9 9 9 1 3 7 6 9 7 9 8 9 1 1 1 3 9 6 3 8 1 6 8 3 8 3 9 7 9 6 2 1 8 1 8
## [15805] 1 2 3 1 7 2 1 9 1 6 8 1 9 3 2 3 1 8 1 6 1 3 1 8 1 5 5 3 2 1 1 3 8 7 1 8
## [15841] 3 5 5 1 6 1 9 3 6 5 8 3 6 1 3 8 3 8 5 1 7 6 3 8 1 9 3 1 3 6 9 1 6 1 3 9
## [15877] 1 8 8 1 3 8 7 3 3 1 1 3 2 3 3 3 8 7 9 3 5 3 6 9 7 8 5 3 3 3 8 1 1 2 1 1
## [15913] 8 7 6 6 9 5 6 3 1 1 9 3 9 8 7 7 8 8 8 1 6 1 2 1 1 6 1 8 9 2 1 9 9 9 3 1
## [15949] 1 6 8 1 9 9 3 1 3 6 5 7 1 3 1 6 6 7 3 2 1 1 8 7 6 6 3 5 7 9 1 9 8 2 7 5
## [15985] 5 3 3 1 2 9 7 8 3 1 8 9 8 7 3 9 5 9 3 9 3 8 1 6 9 3 1 1 2 8 3 1 6 8 8 7
## [16021] 1 1 9 5 9 2 1 1 7 3 3 6 8 1 8 1 1 1 1 1 3 7 7 1 1 9 3 3 3 1 9 6 5 8 1 3
## [16057] 2 1 9 1 3 6 3 9 1 3 2 1 1 8 7 9 5 3 1 9 9 3 8 9 1 1 8 8 1 6 5 1 1 8 9 7
## [16093] 1 3 3 1 1 9 5 8 7 1 8 3 3 3 1 9 9 1 1 9 2 1 1 9 3 2 1 3 6 8 8 2 5 9 8 2
## [16129] 1 3 1 1 6 9 7 1 3 6 7 2 2 5 1 1 5 3 6 3 1 9 6 8 1 5 6 8 9 5 2 3 7 9 2 1
## [16165] 3 9 1 1 8 5 5 1 1 8 2 9 1 7 1 3 1 1 3 9 3 3 1 3 7 3 3 5 3 1 1 3 3 7 5 1
## [16201] 2 6 3 8 8 7 6 6 9 8 6 7 9 5 8 5 1 9 1 3 8 9 7 1 3 9 7 3 2 6 6 2 8 6 3 9
## [16237] 6 1 9 2 3 8 7 1 1 1 8 2 7 6 9 1 3 3 1 3 3 1 7 8 6 8 9 8 5 5 1 1 5 1 2 1
## [16273] 5 9 5 9 9 1 9 7 3 1 3 3 1 8 3 8 5 1 9 1 1 3 2 1 9 5 8 2 2 1 4 3 1 3 8 8
## [16309] 3 3 2 3 1 3 3 3 1 1 8 3 1 1 3 3 3 6 1 6 9 5 5 5 3 7 2 3 8 1 1 9 1 6 9 3
## [16345] 1 4 1 1 6 3 1 2 6 9 9 1 6 8 3 9 2 1 1 9 1 8 2 6 7 3 1 2 9 1 8 8 1 1 1 3
## [16381] 1 8 3 3 1 1 8 9 8 1 6 3 9 3 1 3 8 4 1 5 1 8 1 9 6 5 9 8 8 6 3 7 1 6 9 1
## [16417] 5 1 1 7 1 1 9 1 1 2 3 3 2 8 5 2 6 7 2 1 1 8 2 1 9 3 9 3 8 7 3 6 3 1 3 9
## [16453] 6 9 7 1 7 3 8 8 1 1 7 2 7 9 9 1 9 8 1 3 1 9 8 3 9 1 2 9 8 6 2 6 6 9 3 1
## [16489] 9 1 9 2 2 1 6 9 1 1 3 9 1 1 1 7 8 2 1 8 1 5 1 8 3 3 1 1 7 9 7 9 3 1 3 1
## [16525] 1 3 7 1 1 1 3 2 9 9 1 4 3 9 9 1 1 5 5 9 8 1 1 1 7 5 1 9 2 9 3 9 3 1 9 3
## [16561] 9 1 7 7 9 7 3 3 9 3 6 1 1 9 7 6 6 3 9 6 7 1 8 8 1 9 1 1 1 1 3 9 3 3 6 6
## [16597] 1 1 7 5 6 3 2 2 2 6 6 8 8 1 9 8 8 9 3 1 3 8 3 3 7 1 1 9 1 3 1 1 7 6 8 8
## [16633] 6 9 6 1 9 3 3 8 1 1 6 1 5 8 8 6 3 1 1 8 2 2 8 9 5 6 7 6 5 1 9 3 6 4 1 7
## [16669] 9 3 3 5 2 6 1 9 9 3 8 3 1 1 2 9 9 7 2 1 8 3 9 3 1 8 1 3 7 1 8 7 9 6 9 3
## [16705] 6 1 5 1 5 8 2 6 2 1 5 5 1 9 7 1 1 1 6 1 9 8 1 1 7 7 9 3 5 1 1 9 1 5 1 2
## [16741] 6 6 8 7 1 8 1 6 3 2 2 8 1 3 9 1 1 9 4 8 9 9 1 1 9 6 7 1 7 9 9 2 9 6 9 6
## [16777] 3 1 2 9 9 1 9 6 5 6 8 5 3 1 1 7 9 2 9 3 9 6 1 9 9 1 3 8 9 9 7 3 2 3 9 7
## [16813] 8 5 4 8 8 7 7 2 7 1 1 1 5 1 3 7 6 2 7 1 8 3 3 6 2 6 1 2 1 9 1 1 8 1 3 7
## [16849] 6 3 1 9 2 8 7 1 1 6 1 9 1 3 1 6 1 1 2 8 8 9 5 6 1 1 3 1 6 3 3 8 3 2 3 9
## [16885] 1 7 3 7 3 7 2 3 7 7 2 1 7 4 8 7 6 5 7 3 8 1 1 1 9 7 7 3 3 1 1 2 3 1 3 8
## [16921] 3 1 1 8 6 6 7 3 1 8 8 8 7 3 5 3 8 3 7 7 1 8 3 1 1 1 5 7 8 1 1 7 1 1 8 1
## [16957] 1 9 6 3 1 3 9 8 9 1 9 3 5 1 2 3 5 3 3 9 3 9 1 8 1 1 8 8 9 3 9 5 3 8 9 1
## [16993] 9 8 1 8 7 1 6 1 1 9 8 1 3 8 2 2 5 3 1 5 1 8 9 7 5 8 8 6 9 6 9 4 3 7 4 7
## [17029] 2 1 1 9 9 8 1 9 6 3 9 9 3 9 1 6 7 9 3 2 5 9 1 7 1 3 1 1 9 9 4 7 1 9 9 1
## [17065] 9 4 1 1 1 8 7 6 2 5 8 6 6 3 9 1 7 6 9 1 8 9 8 5 6 2 3 2 3 2 1 6 8 8 9 3
## [17101] 8 1 5 9 9 2 9 2 9 1 6 1 1 1 7 9 5 7 2 4 3 1 2 3 9 8 1 1 8 1 9 1 9 1 1 1
## [17137] 3 3 1 3 1 8 9 6 9 9 8 1 9 9 7 3 1 9 1 2 3 1 7 3 9 8 3 3 1 8 1 8 1 9 6 7
## [17173] 6 6 6 8 6 5 1 1 1 2 6 3 9 3 9 1 2 8 9 8 3 5 9 6 3 9 2 8 8 1 5 3 9 9 9 1
## [17209] 1 2 1 1 8 5 1 9 9 9 3 5 6 3 6 9 7 5 9 3 1 7 9 3 5 1 3 8 1 9 8 5 3 3 1 3
## [17245] 7 3 1 6 2 1 8 1 6 8 9 3 8 2 8 8 8 2 8 8 8 6 1 1 5 8 7 6 9 1 8 9 9 1 1 1
## [17281] 9 1 1 1 3 2 1 9 2 6 1 1 5 3 2 9 9 9 6 3 2 3 2 8 3 2 5 6 5 9 7 9 9 2 3 3
## [17317] 8 1 1 7 1 9 5 1 1 8 3 1 9 1 5 6 9 3 8 3 1 7 1 4 3 4 7 1 8 5 8 8 7 3 8 3
## [17353] 7 6 4 2 1 1 8 7 5 6 1 1 9 1 1 1 9 7 9 5 3 3 9 1 3 3 6 6 5 1 1 7 6 1 2 1
## [17389] 8 3 1 8 6 6 3 6 9 9 1 8 1 6 2 6 1 9 9 1 9 5 3 2 1 1 1 6 1 3 7 6 3 1 5 8
## [17425] 1 6 8 8 6 2 1 7 1 2 8 1 9 9 8 1 1 1 9 3 8 6 8 1 9 1 9 1 5 8 8 5 8 8 1 9
## [17461] 7 9 8 7 1 3 8 3 9 1 9 3 1 6 9 1 9 6 3 5 1 3 1 9 1 7 1 1 7 2 3 1 1 1 2 5
## [17497] 7 1 3 9 3 1 6 1 3 6 3 3 1 3 6 5 7 3 2 9 1 1 6 1 7 1 7 5 5 5 2 7 2 1 1 9
## [17533] 8 9 9 6 7 9 8 5 3 1 2 2 2 7 5 3 2 5 1 3 2 1 8 8 2 7 1 6 9 1 1 8 1 1 1 9
## [17569] 7 2 3 1 2 9 8 1 1 3 9 8 1 6 7 9 1 6 1 9 1 7 9 1 8 5 1 9 1 8 1 8 2 3 2 6
## [17605] 9 1 3 1 1 2 1 3 1 7 1 8 6 3 9 3 1 1 3 3 1 3 1 1 3 5 8 3 9 1 7 9 3 3 6 7
## [17641] 2 2 7 8 2 7 9 9 1 2 6 7 8 1 5 7 8 3 1 8 1 3 1 6 2 1 9 1 3 9 9 3 5 9 9 5
## [17677] 3 3 6 6 6 1 6 5 1 5 3 9 9 1 1 9 6 1 8 7 1 3 5 9 2 6 7 3 1 2 1 3 1 9 1 6
## [17713] 9 5 1 9 8 3 2 3 1 1 9 3 8 5 3 1 3 7 8 5 1 1 9 1 7 3 3 1 3 6 1 5 3 6 3 5
## [17749] 1 9 9 3 8 6 1 5 5 9 3 3 8 7 3 7 6 1 6 6 9 1 7 6 2 1 9 6 7 3 8 3 6 7 5 9
## [17785] 5 8 2 6 6 1 1 3 6 3 3 6 3 7 1 1 8 1 1 1 4 8 1 4 3 6 9 7 3 1 1 7 7 7 8 8
## [17821] 9 9 1 3 9 8 1 5 3 6 2 8 1 9 8 1 3 1 1 9 7 9 7 5 1 9 3 1 3 3 3 8 1 1 8 9
## [17857] 3 5 2 1 9 7 5 2 6 7 7 9 6 7 1 1 7 3 6 1 3 1 7 3 1 1 9 5 1 1 7 9 2 3 3 2
## [17893] 3 1 1 9 9 1 1 2 6 3 6 6 2 1 8 1 8 1 6 3 9 9 5 2 3 3 7 1 9 3 5 1 8 9 1 1
## [17929] 9 6 9 1 3 1 8 9 2 7 6 8 7 3 9 1 1 7 7 6 1 7 5 1 1 7 6 1 7 7 8 9 8 3 5 9
## [17965] 3 8 3 1 3 1 1 1 9 3 7 8 2 7 9 1 8 8 1 2 3 7 1 5 9 3 1 8 3 3 3 8 1 5 2 2
## [18001] 1 1 7 1 6 1 7 1 1 3 9 9 8 8 3 7 6 1 1 1 8 8 5 6 1 9 3 7 8 1 3 7 7 2 8 6
## [18037] 1 1 7 7 3 8 1 1 1 9 6 9 1 3 1 7 8 1 3 6 2 1 2 3 1 9 3 3 1 8 7 9 3 1 1 1
## [18073] 7 6 8 1 9 8 1 2 1 9 9 8 6 6 8 1 8 6 1 3 5 7 2 3 9 3 3 6 9 7 5 5 1 9 9 8
## [18109] 1 3 8 8 1 9 1 8 9 1 1 2 5 9 6 7 7 8 1 3 3 3 9 7 3 9 1 8 9 8 5 8 4 7 3 1
## [18145] 8 8 3 9 9 7 1 3 6 1 8 9 1 9 5 5 9 3 3 3 1 7 1 4 2 1 7 1 9 2 9 9 1 1 5 8
## [18181] 8 8 9 6 5 3 8 7 2 9 7 7 2 8 6 8 3 5 1 2 6 7 2 2 1 7 7 1 1 1 6 8 1 9 8 1
## [18217] 1 1 9 1 9 6 2 3 5 3 5 2 5 1 7 6 1 2 8 9 3 9 3 1 3 5 2 9 9 1 1 1 3 7 3 1
## [18253] 6 9 8 8 3 5 1 8 9 8 8 1 5 7 2 9 8 6 1 1 1 2 8 2 9 3 3 3 1 3 2 1 3 9 1 6
## [18289] 3 1 3 9 1 2 3 3 7 3 1 1 1 1 3 1 2 6 1 3 2 1 7 1 2 8 9 8 3 5 9 1 6 3 8 3
## [18325] 3 9 3 2 1 3 9 1 8 7 3 2 1 9 1 2 9 1 3 2 1 8 2 8 9 2 7 3 5 9 8 7 1 9 5 3
## [18361] 1 6 1 1 1 5 5 3 6 5 8 2 2 1 8 6 9 9 9 3 1 1 3 2 6 3 7 3 1 5 1 7 3 7 4 9
## [18397] 9 6 1 7 9 3 6 1 2 3 1 6 7 1 1 9 3 7 7 9 1 6 5 9 9 1 6 1 1 5 5 5 2 1 8 7
## [18433] 6 2 5 3 3 1 3 3 9 2 9 9 1 1 6 8 1 8 6 3 3 8 6 1 9 1 5 3 1 3 1 1 6 7 3 3
## [18469] 3 5 8 1 1 8 9 5 7 5 3 1 2 3 5 8 8 9 1 1 1 3 7 3 3 7 9 1 1 5 5 1 1 6 1 7
## [18505] 1 9 1 3 1 4 7 9 7 1 1 1 6 8 9 7 7 3 1 8 8 3 3 1 2 8 8 3 1 9 1 3 1 1 1 6
## [18541] 3 6 8 1 9 9 3 3 9 9 1 2 1 1 3 8 3 3 8 3 9 8 9 3 1 6 5 7 6 9 3 6 1 5 6 7
## [18577] 1 1 9 2 7 1 9 8 1 1 1 9 3 8 6 1 1 1 1 3 1 9 9 7 1 5 7 6 1 9 1 1 1 1 5 1
## [18613] 1 3 7 7 6 8 3 6 2 1 3 5 5 2 3 1 5 2 1 9 1 3 3 1 1 9 6 1 7 1 3 9 8 3 7 3
## [18649] 3 3 5 1 5 1 8 1 1 1 9 6 3 7 9 1 9 3 1 7 3 6 6 7 2 6 8 1 6 1 3 8 3 7 6 6
## [18685] 6 5 8 3 2 6 4 2 1 7 6 6 2 5 1 1 4 4 1 3 2 1 9 7 1 7 8 1 7 1 9 1 8 1 9 6
## [18721] 1 6 1 1 3 1 9 8 1 8 3 4 2 5 2 7 8 8 2 5 5 8 1 5 7 3 2 3 1 7 2 5 8 3 7 8
## [18757] 9 1 8 1 5 1 9 9 9 7 1 7 8 9 2 1 1 9 1 1 8 1 1 8 1 8 3 9 9 1 6 5 5 9 1 1
## [18793] 1 3 8 3 3 8 1 1 6 6 1 3 1 9 3 9 8 8 9 1 9 8 2 6 6 1 3 9 6 5 3 8 1 9 6 5
## [18829] 1 3 1 1 7 9 5 5 3 3 2 1 8 3 6 3 9 3 1 1 9 9 8 1 8 1 1 3 8 2 3 3 3 3 1 1
## [18865] 8 3 2 3 3 1 1 8 6 9 9 8 3 3 5 3 3 1 1 7 5 9 1 9 2 1 8 9 6 1 7 9 1 1 8 6
## [18901] 8 1 9 9 1 3 1 9 3 1 1 1 6 8 8 1 8 3 3 1 3 2 1 9 2 1 9 3 7 1 8 1 9 7 3 2
## [18937] 9 8 3 8 7 7 8 6 7 3 1 1 7 6 1 2 3 1 1 1 6 2 5 1 9 5 1 8 6 8 9 7 1 9 8 7
## [18973] 5 3 8 7 6 1 1 8 4 4 9 6 9 9 8 2 9 6 6 1 1 2 8 1 8 1 3 3 2 1 2 6 1 1 1 1
## [19009] 9 9 7 3 5 9 9 9 8 3 5 7 1 8 3 2 6 8 3 3 2 1 2 9 1 8 9 6 7 1 9 9 8 5 1 9
## [19045] 9 7 3 1 3 3 1 1 8 2 7 1 8 8 1 1 3 9 3 9 9 8 1 8 3 3 1 3 3 5 8 8 2 6 1 9
## [19081] 4 9 1 1 9 1 2 8 1 9 1 9 8 2 4 1 7 3 3 6 3 2 9 1 9 3 9 7 2 8 7 3 1 1 2 1
## [19117] 2 1 2 9 6 1 2 9 7 1 9 2 1 1 1 2 9 9 5 3 3 1 9 9 8 1 1 1 2 3 6 3 1 9 8 1
## [19153] 9 5 7 6 1 7 1 3 5 6 7 9 6 1 7 2 8 5 9 5 7 9 1 8 9 3 5 6 1 8 7 7 1 6 6 1
## [19189] 5 6 1 1 1 2 2 1 8 3 3 3 3 8 1 9 9 6 7 6 9 7 6 8 2 3 5 6 1 2 3 2 6 9 1 9
## [19225] 8 9 3 5 6 2 8 2 1 1 5 1 3 1 2 4 3 9 6 1 1 2 6 6 3 9 5 8 1 3 7 8 3 3 1 1
## [19261] 8 1 8 3 1 1 9 8 1 8 1 8 1 8 3 2 9 5 3 6 6 5 9 2 9 2 5 8 3 1 9 3 5 7 1 3
## [19297] 6 5 5 1 8 1 8 9 1 6 5 1 1 8 1 3 6 6 5 7 7 1 8 1 8 3 3 3 3 9 3 4 7 5 6 8
## [19333] 5 1 7 3 2 6 9 9 7 7 6 1 1 2 7 4 9 6 8 1 1 6 3 2 9 9 1 8 3 1 8 1 8 3 9 3
## [19369] 1 1 3 2 1 3 3 6 8 5 3 2 3 2 6 1 9 9 1 3 5 2 3 1 9 8 3 3 8 3 9 3 5 9 8 3
## [19405] 9 1 9 5 1 7 1 3 1 4 8 7 6 1 4 3 1 8 1 1 9 1 3 6 2 2 6 6 1 1 9 1 2 6 1 7
## [19441] 2 9 9 6 1 2 8 3 3 8 1 8 3 9 3 1 1 1 9 8 2 1 1 5 1 3 1 1 6 8 1 3 1 1 7 9
## [19477] 3 5 3 7 5 4 1 3 9 3 5 1 1 8 6 6 9 7 6 1 6 3 1 1 8 5 1 6 7 3 1 9 1 6 4 1
## [19513] 1 3 5 2 9 9 3 1 5 3 7 1 7 1 1 2 3 5 8 1 3 3 1 8 3 1 3 3 9 8 2 8 6 3 9 5
## [19549] 3 3 6 3 1 1 1 9 1 1 1 7 8 9 9 7 2 3 9 9 3 8 3 3 7 3 1 1 1 3 3 9 3 6 9 2
## [19585] 3 3 9 1 1 7 1 6 1 8 7 8 3 7 6 7 3 3 5 9 2 1 5 8 9 3 8 1 8 3 5 3 8 8 6 3
## [19621] 2 3 9 5 1 3 1 9 7 9 8 5 8 9 9 5 6 9 5 2 9 5 1 9 1 8 2 2 9 5 6 2 9 3 6 8
## [19657] 1 3 2 2 9 2 1 7 3 1 3 1 1 1 9 3 3 3 3 9 1 1 7 8 1 1 3 7 3 8 3 3 3 8 3 2
## [19693] 1 2 9 7 9 1 3 6 3 7 1 9 1 1 3 7 1 1 1 1 2 1 8 1 3 3 3 5 2 2 8 2 3 8 8 6
## [19729] 9 1 5 7 8 1 3 7 9 3 3 1 3 1 2 3 2 3 1 9 8 1 5 1 7 5 4 1 9 2 1 1 7 8 5 3
## [19765] 1 8 3 1 3 7 3 3 3 1 8 5 9 5 2 3 1 6 1 1 3 7 3 7 6 8 7 1 2 9 5 2 9 3 7 5
## [19801] 1 6 3 8 3 1 9 8 1 5 1 1 1 7 1 7 1 6 7 4 1 1 9 2 3 1 3 9 1 9 2 6 1 5 5 1
## [19837] 1 1 1 6 2 9 1 1 3 1 8 6 2 1 6 5 5 6 2 9 8 9 3 3 2 3 3 8 9 3 9 8 9 3 1 8
## [19873] 9 3 2 9 3 3 5 1 9 2 8 1 8 7 8 9 1 8 1 6 5 3 1 5 3 1 5 1 6 3 7 2 5 3 1 9
## [19909] 1 1 7 2 3 6 1 7 1 9 5 7 8 6 6 3 8 1 1 1 2 7 9 7 5 5 9 3 8 8 2 9 1 9 7 3
## [19945] 6 9 1 1 9 7 1 1 1 3 8 1 1 5 2 7 3 6 1 3 9 3 6 7 7 1 1 8 1 3 5 9 8 8 9 3
## [19981] 9 9 6 1 6 1 1 2 9 6 1 1 7 7 9 9 1 9 1 5
library(tfruns)
library(keras)

runs <- tuning_run("yahoo.R",
  flags = list(
  nodes = c(64, 128, 392),
  learning_rate = c(0.01, 0.05, 0.001, 0.0001),
  batch_size=c(100,200,500,1000),
  epochs=c(30,50),
  activation=c("relu","sigmoid","tanh")
),
sample = 0.02
)
## 288 total combinations of flags
## (sampled to 6 combinations)
## Training run 1/6 (flags = list(128, 0.001, 200, 30, "tanh"))
## Using run directory runs/2022-12-06T08-00-57Z
## 
## > FLAGS <- flags(flag_numeric("nodes", 128), flag_numeric("batch_size", 
## +     100), flag_string("activation", "relu"), flag_numeric("learning_rate",  .... [TRUNCATED] 
## 
## > model = keras_model_sequential()
## 
## > model %>% layer_dense(units = FLAGS$nodes, activation = FLAGS$activation, 
## +     , input_shape = dim(yahoo1_train_dtm)[2]) %>% layer_dense(units = 1 .... [TRUNCATED] 
## 
## > model %>% compile(optimizer = optimizer_adam(lr = FLAGS$learning_rate), 
## +     loss = "sparse_categorical_crossentropy", metrics = c("accuracy"))
## Warning in backcompat_fix_rename_lr_to_learning_rate(...): the `lr` argument has
## been renamed to `learning_rate`.
## 
## > model %>% fit(yahoo1_train_dtm, yah1_train_label, 
## +     epochs = 30, batch_size = 100, validation_data = list(yahoo1_test_dtm, 
## +         yah1_test .... [TRUNCATED]
## 
## Run completed: runs/2022-12-06T08-00-57Z
## Training run 2/6 (flags = list(64, 0.001, 500, 50, "sigmoid"))
## Using run directory runs/2022-12-06T08-02-43Z
## 
## > FLAGS <- flags(flag_numeric("nodes", 128), flag_numeric("batch_size", 
## +     100), flag_string("activation", "relu"), flag_numeric("learning_rate",  .... [TRUNCATED] 
## 
## > model = keras_model_sequential()
## 
## > model %>% layer_dense(units = FLAGS$nodes, activation = FLAGS$activation, 
## +     , input_shape = dim(yahoo1_train_dtm)[2]) %>% layer_dense(units = 1 .... [TRUNCATED] 
## 
## > model %>% compile(optimizer = optimizer_adam(lr = FLAGS$learning_rate), 
## +     loss = "sparse_categorical_crossentropy", metrics = c("accuracy"))
## Warning in backcompat_fix_rename_lr_to_learning_rate(...): the `lr` argument has
## been renamed to `learning_rate`.
## 
## > model %>% fit(yahoo1_train_dtm, yah1_train_label, 
## +     epochs = 30, batch_size = 100, validation_data = list(yahoo1_test_dtm, 
## +         yah1_test .... [TRUNCATED]
## 
## Run completed: runs/2022-12-06T08-02-43Z
## Training run 3/6 (flags = list(128, 0.05, 1000, 50, "tanh"))
## Using run directory runs/2022-12-06T08-04-23Z
## 
## > FLAGS <- flags(flag_numeric("nodes", 128), flag_numeric("batch_size", 
## +     100), flag_string("activation", "relu"), flag_numeric("learning_rate",  .... [TRUNCATED] 
## 
## > model = keras_model_sequential()
## 
## > model %>% layer_dense(units = FLAGS$nodes, activation = FLAGS$activation, 
## +     , input_shape = dim(yahoo1_train_dtm)[2]) %>% layer_dense(units = 1 .... [TRUNCATED] 
## 
## > model %>% compile(optimizer = optimizer_adam(lr = FLAGS$learning_rate), 
## +     loss = "sparse_categorical_crossentropy", metrics = c("accuracy"))
## Warning in backcompat_fix_rename_lr_to_learning_rate(...): the `lr` argument has
## been renamed to `learning_rate`.
## 
## > model %>% fit(yahoo1_train_dtm, yah1_train_label, 
## +     epochs = 30, batch_size = 100, validation_data = list(yahoo1_test_dtm, 
## +         yah1_test .... [TRUNCATED]
## 
## Run completed: runs/2022-12-06T08-04-23Z
## Training run 4/6 (flags = list(64, 0.001, 1000, 50, "sigmoid"))
## Using run directory runs/2022-12-06T08-06-08Z
## 
## > FLAGS <- flags(flag_numeric("nodes", 128), flag_numeric("batch_size", 
## +     100), flag_string("activation", "relu"), flag_numeric("learning_rate",  .... [TRUNCATED] 
## 
## > model = keras_model_sequential()
## 
## > model %>% layer_dense(units = FLAGS$nodes, activation = FLAGS$activation, 
## +     , input_shape = dim(yahoo1_train_dtm)[2]) %>% layer_dense(units = 1 .... [TRUNCATED] 
## 
## > model %>% compile(optimizer = optimizer_adam(lr = FLAGS$learning_rate), 
## +     loss = "sparse_categorical_crossentropy", metrics = c("accuracy"))
## Warning in backcompat_fix_rename_lr_to_learning_rate(...): the `lr` argument has
## been renamed to `learning_rate`.
## 
## > model %>% fit(yahoo1_train_dtm, yah1_train_label, 
## +     epochs = 30, batch_size = 100, validation_data = list(yahoo1_test_dtm, 
## +         yah1_test .... [TRUNCATED]
## 
## Run completed: runs/2022-12-06T08-06-08Z
## Training run 5/6 (flags = list(392, 0.001, 200, 50, "relu"))
## Using run directory runs/2022-12-06T08-07-49Z
## 
## > FLAGS <- flags(flag_numeric("nodes", 128), flag_numeric("batch_size", 
## +     100), flag_string("activation", "relu"), flag_numeric("learning_rate",  .... [TRUNCATED] 
## 
## > model = keras_model_sequential()
## 
## > model %>% layer_dense(units = FLAGS$nodes, activation = FLAGS$activation, 
## +     , input_shape = dim(yahoo1_train_dtm)[2]) %>% layer_dense(units = 1 .... [TRUNCATED] 
## 
## > model %>% compile(optimizer = optimizer_adam(lr = FLAGS$learning_rate), 
## +     loss = "sparse_categorical_crossentropy", metrics = c("accuracy"))
## Warning in backcompat_fix_rename_lr_to_learning_rate(...): the `lr` argument has
## been renamed to `learning_rate`.
## 
## > model %>% fit(yahoo1_train_dtm, yah1_train_label, 
## +     epochs = 30, batch_size = 100, validation_data = list(yahoo1_test_dtm, 
## +         yah1_test .... [TRUNCATED]
## 
## Run completed: runs/2022-12-06T08-07-49Z
## Training run 6/6 (flags = list(64, 0.001, 200, 50, "sigmoid"))
## Using run directory runs/2022-12-06T08-10-07Z
## 
## > FLAGS <- flags(flag_numeric("nodes", 128), flag_numeric("batch_size", 
## +     100), flag_string("activation", "relu"), flag_numeric("learning_rate",  .... [TRUNCATED] 
## 
## > model = keras_model_sequential()
## 
## > model %>% layer_dense(units = FLAGS$nodes, activation = FLAGS$activation, 
## +     , input_shape = dim(yahoo1_train_dtm)[2]) %>% layer_dense(units = 1 .... [TRUNCATED] 
## 
## > model %>% compile(optimizer = optimizer_adam(lr = FLAGS$learning_rate), 
## +     loss = "sparse_categorical_crossentropy", metrics = c("accuracy"))
## Warning in backcompat_fix_rename_lr_to_learning_rate(...): the `lr` argument has
## been renamed to `learning_rate`.
## 
## > model %>% fit(yahoo1_train_dtm, yah1_train_label, 
## +     epochs = 30, batch_size = 100, validation_data = list(yahoo1_test_dtm, 
## +         yah1_test .... [TRUNCATED]
## 
## Run completed: runs/2022-12-06T08-10-07Z
runs
view_run(runs$run_dir[4])
## starting httpd help server ... done
## Warning in readLines(file.path(source_dir, file)): incomplete final line
## found on '/var/folders/tg/k_ryxmf15wq19bbnt09kxvkh0000gn/T//RtmpzBtKyh/
## file12542866ed7b/source/yahoo.R'
yahoo1_train_dtm <- as.matrix(yahoo1_train_dtm)
yahoo1_validation_dtm <- as.matrix(yahoo1_validation_dtm)
yahoo1_test_dtm <- as.matrix(yahoo1_test_dtm)
new_train <- rbind(yahoo1_train_dtm, yahoo1_validation_dtm)
yah1_train_label <- as.matrix(yah1_train_label)
yah1_val_label <- as.matrix(yah1_val_label)
yah1_test_label <- as.matrix(yah1_test_label)
new_train_label <- rbind(yah1_train_label, yah1_val_label)
model =keras_model_sequential() 
model %>%
  layer_dense(units = 128, activation = 'tanh') %>%
  layer_dense(units = 10, activation = 'softmax')

model %>% compile(
  optimizer = optimizer_adam(lr=0.05),
  loss = 'sparse_categorical_crossentropy',
  metrics = c('accuracy')
)
## Warning in backcompat_fix_rename_lr_to_learning_rate(...): the `lr` argument has
## been renamed to `learning_rate`.
history <- model %>% fit(
new_train, new_train_label, epochs = 50
, batch_size= 1000,
validation_data=list(yahoo1_test_dtm, yah1_test_label ))
library(caret)
## Loading required package: lattice
plot(history)

predictions <- model %>% predict(yahoo1_test_dtm)
predictions <- apply(predictions, 1, which.max)
c.matrix <- confusionMatrix(as.factor(predictions), as.factor(yah1_test_label))
c.matrix
## Confusion Matrix and Statistics
## 
##           Reference
## Prediction    1    2    3    4    5    6    7    8    9   10
##         1     1    1    0    1    0    0    0    0    0    0
##         2    63    5    5    8    3    7    7   10   14   10
##         3  1826 1869 1300 1583  684  974  960 1178  626 2105
##         4    52   13  620   30   10    8    5   26  198   15
##         5    12   11    3   37   13    5    7   13   10    7
##         6    13   13    5   18 1081   12   14   57   13    3
##         7    13   18   14   40   10  889   14   56   14    7
##         8    22    5    8   20   33   15   65   31   43   19
##         9   148   20   59   57   65  466   24  958  255   42
##         10   76    4   80   20    6   11    4   62  740    3
## 
## Overall Statistics
##                                           
##                Accuracy : 0.0832          
##                  95% CI : (0.0794, 0.0871)
##     No Information Rate : 0.1196          
##     P-Value [Acc > NIR] : 1               
##                                           
##                   Kappa : -0.0206         
##                                           
##  Mcnemar's Test P-Value : <2e-16          
## 
## Statistics by Class:
## 
##                       Class: 1 Class: 2 Class: 3 Class: 4 Class: 5 Class: 6
## Sensitivity          0.0004492 0.002552   0.6208  0.01654 0.006824 0.005027
## Specificity          0.9998875 0.992960   0.3407  0.94793 0.994197 0.930903
## Pos Pred Value       0.3333333 0.037879   0.0992  0.03071 0.110169 0.009764
## Neg Pred Value       0.8887333 0.901651   0.8848  0.90622 0.904839 0.873475
## Prevalence           0.1113000 0.097950   0.1047  0.09070 0.095250 0.119350
## Detection Rate       0.0000500 0.000250   0.0650  0.00150 0.000650 0.000600
## Detection Prevalence 0.0001500 0.006600   0.6552  0.04885 0.005900 0.061450
## Balanced Accuracy    0.5001684 0.497756   0.4808  0.48223 0.500511 0.467965
##                      Class: 7 Class: 8 Class: 9 Class: 10
## Sensitivity           0.01273  0.01297  0.13330  0.001357
## Specificity           0.94386  0.98694  0.89832  0.943617
## Pos Pred Value        0.01302  0.11877  0.12178  0.002982
## Neg Pred Value        0.94262  0.88044  0.90741  0.883753
## Prevalence            0.05500  0.11955  0.09565  0.110550
## Detection Rate        0.00070  0.00155  0.01275  0.000150
## Detection Prevalence  0.05375  0.01305  0.10470  0.050300
## Balanced Accuracy     0.47829  0.49995  0.51581  0.472487
model %>% evaluate(yahoo1_test_dtm, yah1_test_label )
##     loss accuracy 
## 1.589522 0.316100